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 ();