Skip to content

Commit

Permalink
fixing loading screen
Browse files Browse the repository at this point in the history
  • Loading branch information
adbreeker committed Jan 3, 2024
1 parent 36db5c6 commit 53ccf9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Project/Scripts/UI/MainMenu/LoadingScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ IEnumerator CheckMediapipeWithDelay(float delay)
//There we need to check if mediapipeProcess is loaded
try
{
MemoryMappedFile mmf_gesture = MemoryMappedFile.OpenExisting("gestures");
MemoryMappedFile mmf_gesture = MemoryMappedFile.OpenExisting("magehand_gestures");
MemoryMappedViewStream stream_gesture = mmf_gesture.CreateViewStream();
BinaryReader reader_gesture = new BinaryReader(stream_gesture);
byte[] frameGesture = reader_gesture.ReadBytes(12);
Expand Down

0 comments on commit 53ccf9e

Please sign in to comment.