Fixed warning. (GCC doesn't like the variable 'isPaused' because there already is

an isPaused() function.)

svn-id: r35009
This commit is contained in:
Torbjörn Andersson 2008-11-11 20:25:44 +00:00
parent 0414a78a65
commit c29dfd1f17

View File

@ -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) {