Fixed openUrl.

This commit is contained in:
Бранимир Караџић 2019-08-16 07:05:01 -07:00
parent 75d5662f0b
commit 2814ee8bb7
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ void openUrl(const bx::StringView& _url)
#if BX_PLATFORM_WINDOWS
void* result = ShellExecuteA(NULL, NULL, tmp, NULL, NULL, false);
BX_UNUSED(result);
#elif !defined(BX_PLATFORM_IOS)
#elif !BX_PLATFORM_IOS
int32_t result = system(tmp);
BX_UNUSED(result);
#endif // BX_PLATFORM_*