mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 10:35:43 -05:00
Fixed clang warning.
This commit is contained in:
parent
216ce2ac4f
commit
00d5f1adcb
1 changed files with 2 additions and 2 deletions
|
@ -1457,12 +1457,12 @@ struct Imgui
|
|||
uint8_t ii = 0;
|
||||
for (; ii < enabledCount; ++ii)
|
||||
{
|
||||
bool enabled = va_arg(_argList, bool);
|
||||
bool enabled = va_arg(_argList, int);
|
||||
tabEnabled[ii] = enabled;
|
||||
}
|
||||
for (; ii < _nEnabled; ++ii)
|
||||
{
|
||||
bool enabled = va_arg(_argList, bool);
|
||||
bool enabled = va_arg(_argList, int);
|
||||
BX_UNUSED(enabled);
|
||||
}
|
||||
for (; ii < _nTabs; ++ii)
|
||||
|
|
Loading…
Reference in a new issue