1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00

Cosmetic: rename the main event function

This commit is contained in:
Mathieu Schroeter 2017-02-20 18:07:55 +01:00
parent ce80abf359
commit 0c4085e862

View File

@ -299,7 +299,7 @@ static void FinishObjects (void)
}
}
static void WindowProc2 (const SDL_Event &event)
static void HandleEvent (const SDL_Event &event)
{
POINT totalDim, iconDim;
@ -646,8 +646,7 @@ static void initGettext ()
SDL_Event event;
while (SDL_WaitEvent (&event))
{
WindowProc2 (event);
HandleEvent (event);
if (event.type == SDL_QUIT)
break;
}