From 0cc2eec4d0a0e0659833c5a6667cb833def009dc Mon Sep 17 00:00:00 2001 From: momo5502 Date: Thu, 14 Jan 2016 15:31:11 +0100 Subject: [PATCH] Fix definition. --- src/Game/Functions.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Game/Functions.hpp b/src/Game/Functions.hpp index edd5be31..beb7afbc 100644 --- a/src/Game/Functions.hpp +++ b/src/Game/Functions.hpp @@ -151,7 +151,7 @@ namespace Game typedef bool(__cdecl * Menu_IsVisible_t)(UiContext *dc, menuDef_t *menu); extern Menu_IsVisible_t Menu_IsVisible; - typedef int(__cdecl * Menus_MenuIsInStack_t)(UiContext *dc, menuDef_t *menu); + typedef bool(__cdecl * Menus_MenuIsInStack_t)(UiContext *dc, menuDef_t *menu); extern Menus_MenuIsInStack_t Menus_MenuIsInStack; typedef void(__cdecl * MSG_Init_t)(void* msg, void* data, int maxsize);