mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-21 06:13:07 +01:00
Fixed build.
This commit is contained in:
@@ -86,7 +86,7 @@ namespace entry
|
||||
struct MainThreadEntry
|
||||
{
|
||||
int m_argc;
|
||||
char** m_argv;
|
||||
const char* const* m_argv;
|
||||
|
||||
static int32_t threadFunc(void* _userData);
|
||||
};
|
||||
@@ -119,9 +119,9 @@ namespace entry
|
||||
, 0
|
||||
);
|
||||
|
||||
const char* argv[1] = { "android.so" };
|
||||
const char* const argv[1] = { "android.so" };
|
||||
m_mte.m_argc = 1;
|
||||
m_mte.m_argv = const_cast<char**>(argv);
|
||||
m_mte.m_argv = argv;
|
||||
|
||||
while (0 == m_app->destroyRequested)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user