mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-31 16:03:24 +00:00
WINTERMUTE: Use uint32 to fix warning in drawTickets()
This commit is contained in:
parent
e489b69324
commit
517980d43e
@ -420,7 +420,7 @@ void BaseRenderOSystem::drawTickets() {
|
||||
// Note: We draw invalid tickets too, otherwise we wouldn't be honouring
|
||||
// the draw request they obviously made BEFORE becoming invalid, either way
|
||||
// we have a copy of their data, so their invalidness won't affect us.
|
||||
int decrement = 0;
|
||||
uint32 decrement = 0;
|
||||
while (it != _renderQueue.end()) {
|
||||
if ((*it)->_wantsDraw == false) {
|
||||
RenderTicket *ticket = *it;
|
||||
|
Loading…
x
Reference in New Issue
Block a user