From 5d247287ab27f6147305eae565b725ec9ca5cd3c Mon Sep 17 00:00:00 2001 From: Lincoln Hamilton Date: Sun, 7 Aug 2016 11:48:20 -0400 Subject: [PATCH] Fixed elseif to elif compile issue. --- project/src/backend/sdl/SDLSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/backend/sdl/SDLSystem.cpp b/project/src/backend/sdl/SDLSystem.cpp index f1e47ef5a..39c7cba3a 100644 --- a/project/src/backend/sdl/SDLSystem.cpp +++ b/project/src/backend/sdl/SDLSystem.cpp @@ -117,7 +117,7 @@ namespace lime { SHGetFolderPath (NULL, CSIDL_DESKTOPDIRECTORY, NULL, SHGFP_TYPE_CURRENT, result); return WIN_StringToUTF8 (result); - #elseif !defined (ANDROID) + #elif !defined (ANDROID) std::string result = std::string (getenv ("HOME")) + std::string ("/Desktop"); return result.c_str ();