Fixed elseif to elif compile issue.

This commit is contained in:
Lincoln Hamilton
2016-08-07 11:48:20 -04:00
parent 7b22fd1cc4
commit 5d247287ab

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