Merge pull request #790 from Tyveris/develop

Fixed elseif to elif compile issue.
This commit is contained in:
Joshua Granick
2016-08-07 08:50:42 -07:00
committed by GitHub

View File

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