[client] overlay/msg: fix type for app_msgBoxClose

It should not be taking a pointer to MsgBoxHandle.

Also changed the type of MsgBoxHandle to prevent similar bugs.
This commit is contained in:
Quantum
2022-03-18 02:13:56 -04:00
committed by Geoffrey McRae
parent c55d0a82f2
commit 75370e464d
4 changed files with 5 additions and 5 deletions

View File

@@ -665,7 +665,7 @@ MsgBoxHandle app_confirmMsgBox(const char * caption,
return handle;
}
void app_msgBoxClose(MsgBoxHandle * handle)
void app_msgBoxClose(MsgBoxHandle handle)
{
if (!handle)
return;