This commit is contained in:
Бранимир Караџић 2019-08-14 22:31:32 -07:00
parent 1cd61e1c53
commit 1768ace0f7
1 changed files with 4 additions and 2 deletions

View File

@ -65,9 +65,11 @@ void openUrl(const bx::StringView& _url)
#undef OPEN
#if BX_PLATFORM_WINDOWS
ShellExecuteA(NULL, NULL, tmp, NULL, NULL, false);
void* result = ShellExecuteA(NULL, NULL, tmp, NULL, NULL, false);
BX_UNUSED(result);
#else
system(tmp);
int32_t result = system(tmp);
BX_UNUSED(result);
#endif // BX_PLATFORM_*
}