From 792fbfe2e1794839970769ddeefbd5d8801afff2 Mon Sep 17 00:00:00 2001 From: Andrei Kortunov Date: Thu, 30 May 2019 09:19:33 +0400 Subject: [PATCH] Fix type in the preprocessor directive --- apps/openmw-mp/Script/LangLua/LangLua.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/openmw-mp/Script/LangLua/LangLua.cpp b/apps/openmw-mp/Script/LangLua/LangLua.cpp index f813776e8..927ba7cb3 100644 --- a/apps/openmw-mp/Script/LangLua/LangLua.cpp +++ b/apps/openmw-mp/Script/LangLua/LangLua.cpp @@ -178,7 +178,7 @@ void LangLua::LoadProgram(const char *filename) constexpr auto functions_n = sizeof(ScriptFunctions::functions) / sizeof(ScriptFunctions::functions[0]); -#if __arm__ +#ifdef __arm__ LuaFuctionData *functions_ = functions(IndicesFor{}); #else LuaFuctionData *functions_ = functions();