mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-17 20:52:36 +01:00
Cleanup.
This commit is contained in:
@@ -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_*
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user