From 7a89560c14b768336b6bba1efe9542d8da27f6e1 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Thu, 5 Jan 2023 20:58:51 -0600 Subject: [PATCH] chore(glue): clean up function declarations --- src/glue/CGlueMgr.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/glue/CGlueMgr.hpp b/src/glue/CGlueMgr.hpp index c1a2395..1a21c2f 100644 --- a/src/glue/CGlueMgr.hpp +++ b/src/glue/CGlueMgr.hpp @@ -52,12 +52,12 @@ class CGlueMgr { // Static functions // TODO a1: const EVENT_DATA_IDLE* static int32_t HandleDisplaySizeChanged(const CSizeEvent& event); - static int32_t Idle(const void*, void*); + static int32_t Idle(const void* a1, void* a2); static void Initialize(); static void LoginServerLogin(const char* accountName, const char* password); static void QuitGame(); static void Resume(); - static void SetScreen(const char*); + static void SetScreen(const char* screen); static void StatusDialogClick(); static void Suspend(); static void UpdateCurrentScreen(const char* screen);