mirror of
https://github.com/raysan5/raylib.git
synced 2026-02-07 14:49:18 -05:00
fix emcc warning (-Wparentheses-equality) (#1310)
This commit is contained in:
@ -4218,7 +4218,7 @@ static EM_BOOL EmscriptenKeyboardCallback(int eventType, const EmscriptenKeyboar
|
||||
static EM_BOOL EmscriptenMouseCallback(int eventType, const EmscriptenMouseEvent *mouseEvent, void *userData)
|
||||
{
|
||||
// Lock mouse pointer when click on screen
|
||||
if ((eventType == EMSCRIPTEN_EVENT_CLICK))
|
||||
if (eventType == EMSCRIPTEN_EVENT_CLICK)
|
||||
{
|
||||
EmscriptenPointerlockChangeEvent plce;
|
||||
emscripten_get_pointerlock_status(&plce);
|
||||
|
||||
Reference in New Issue
Block a user