Skip to content

Commit

Permalink
Consistent use
Browse files Browse the repository at this point in the history
  • Loading branch information
foxtacles committed May 31, 2024
1 parent 49b86f2 commit 1e4be25
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ISLE/isleapp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ DECOMP_SIZE_ASSERT(IsleApp, 0x8c)
IsleApp* g_isle = NULL;

// GLOBAL: ISLE 0x410034
unsigned char g_mousedown = 0;
unsigned char g_mousedown = FALSE;

// GLOBAL: ISLE 0x410038
unsigned char g_mousemoved = 0;
unsigned char g_mousemoved = FALSE;

// GLOBAL: ISLE 0x41003c
BOOL g_closed = FALSE;
Expand Down Expand Up @@ -344,7 +344,7 @@ int SDL_AppEvent(void* appstate, const SDL_Event* event)
break;
}
case SDL_EVENT_MOUSE_MOTION:
g_mousemoved = 1;
g_mousemoved = TRUE;

if (InputManager()) {
InputManager()->QueueEvent(
Expand Down

0 comments on commit 1e4be25

Please sign in to comment.