mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-17 07:07:10 +00:00
Fixed warning. (GCC doesn't like the variable 'isPaused' because there already is
an isPaused() function.) svn-id: r35009
This commit is contained in:
parent
0414a78a65
commit
c29dfd1f17
@ -533,8 +533,8 @@ void SagaEngine::syncSoundSettings() {
|
||||
}
|
||||
|
||||
void SagaEngine::pauseEngineIntern(bool pause) {
|
||||
bool isPaused = (_render->getFlags() & RF_RENDERPAUSE);
|
||||
if (isPaused == pause)
|
||||
bool engineIsPaused = (_render->getFlags() & RF_RENDERPAUSE);
|
||||
if (engineIsPaused == pause)
|
||||
return;
|
||||
|
||||
if (pause) {
|
||||
|
Loading…
Reference in New Issue
Block a user