Rename game_evthandle() to game_evt()

This commit is contained in:
2025-01-02 18:52:15 +00:00
parent 8dbdea6ac4
commit a8e2c8d89a
3 changed files with 3 additions and 3 deletions

View File

@@ -55,7 +55,7 @@ int main(int argc, char *argv[])
// Handle all events currently in queue
SDL_Event evt;
while (SDL_PollEvent(&evt)) {
if (game_evthandle(gamemem, &evt) != GAMESTATUS_OK)
if (game_evt(gamemem, &evt) != GAMESTATUS_OK)
goto quit;
}
GETPERF(perf.evt);