BASEBACKEND: Remove resetGraphicsScale() hack

All backends that derive from BaseBackend are consoles and/or portables
without any connection from graphics modes to scalers.
The default implementation of resetGraphicsScale() is now a noop, which
seems correct for all current backends.
This fixes unwanted mode changes since 93fdcbfa.
This commit is contained in:
dhewg 2011-02-26 10:54:05 +01:00
parent f26707e353
commit 8add05f9b3

View File

@ -101,7 +101,4 @@ AudioCDManager *BaseBackend::getAudioCDManager() {
}
void BaseBackend::resetGraphicsScale() {
// As a hack, we use 0 here. Backends should override this method
// and provide their own.
setGraphicsMode(0);
}