From 2814ee8bb7085fcb30458273f8fade9835fe975e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Fri, 16 Aug 2019 07:05:01 -0700 Subject: [PATCH] Fixed openUrl. --- examples/common/entry/dialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/common/entry/dialog.cpp b/examples/common/entry/dialog.cpp index a3250be8f..a651df7f0 100644 --- a/examples/common/entry/dialog.cpp +++ b/examples/common/entry/dialog.cpp @@ -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_*