mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-23 16:32:36 +00:00
sdl/i_video.cpp: fix -Wsign-compare
This commit is contained in:
parent
b57c92efd3
commit
9be7563353
1 changed files with 1 additions and 1 deletions
|
|
@ -572,7 +572,7 @@ static INT32 SDLJoyAxis(const Sint16 axis, UINT8 pid)
|
||||||
|
|
||||||
static void Impl_HandleWindowEvent(SDL_WindowEvent evt)
|
static void Impl_HandleWindowEvent(SDL_WindowEvent evt)
|
||||||
{
|
{
|
||||||
#define FOCUSUNION (mousefocus | (kbfocus << 1))
|
#define FOCUSUNION static_cast<unsigned int>(mousefocus | (kbfocus << 1))
|
||||||
static SDL_bool firsttimeonmouse = SDL_TRUE;
|
static SDL_bool firsttimeonmouse = SDL_TRUE;
|
||||||
static SDL_bool mousefocus = SDL_TRUE;
|
static SDL_bool mousefocus = SDL_TRUE;
|
||||||
static SDL_bool kbfocus = SDL_TRUE;
|
static SDL_bool kbfocus = SDL_TRUE;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue