mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-20 22:03:12 +01:00
Cleanup.
This commit is contained in:
@@ -197,8 +197,8 @@ namespace entry
|
||||
, 0
|
||||
);
|
||||
|
||||
const char* const argv[1] = { "android.so" };
|
||||
m_mte.m_argc = 1;
|
||||
static const char* const argv[] = { "android.so" };
|
||||
m_mte.m_argc = BX_COUNTOF(argv);
|
||||
m_mte.m_argv = argv;
|
||||
|
||||
while (0 == m_app->destroyRequested)
|
||||
|
||||
@@ -38,8 +38,8 @@ namespace entry
|
||||
{
|
||||
Context(uint32_t _width, uint32_t _height)
|
||||
{
|
||||
const char* const argv[1] = { "ios" };
|
||||
m_mte.m_argc = 1;
|
||||
static const char* const argv[] = { "ios" };
|
||||
m_mte.m_argc = BX_COUNTOF(argv);
|
||||
m_mte.m_argv = argv;
|
||||
|
||||
m_eventQueue.postSizeEvent(s_defaultWindow, _width, _height);
|
||||
|
||||
Reference in New Issue
Block a user