Browse Source

Remove strcmp() requirement

raysan5 5 years ago
parent
commit
0981dde9d4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/core.c

+ 1 - 1
src/core.c

@@ -4321,7 +4321,7 @@ static EM_BOOL EmscriptenFullscreenChangeCallback(int eventType, const Emscripte
 // Register keyboard input events
 static EM_BOOL EmscriptenKeyboardCallback(int eventType, const EmscriptenKeyboardEvent *keyEvent, void *userData)
 {
-    if ((eventType == EMSCRIPTEN_EVENT_KEYPRESS) && (strcmp(keyEvent->code, "Escape") == 0))
+    if ((eventType == EMSCRIPTEN_EVENT_KEYPRESS) && (keyEvent->key == 27))  // ESCAPE key
     {
         emscripten_exit_pointerlock();
     }