GUI: Fix compiler warning
../scummvm/gui/options.cpp: In member function 'virtual void GUI::OptionsDialog::apply()': ../scummvm/gui/options.cpp:647:82: warning: comparison of integer expressions of different signedness: 'uint' {aka 'unsigned int'} and 'int' [-Wsign-compare] 647 | else if (scalerPlugins[defaultScaler]->get<ScalerPluginObject>().getFactor() != g_system->getDefaultScaleFactor()) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This commit is contained in:
parent
9198d7364a
commit
780c4568c1
6 changed files with 6 additions and 6 deletions
|
@ -112,7 +112,7 @@ uint ModularGraphicsBackend::getDefaultScaler() const {
|
|||
return _graphicsManager->getDefaultScaler();
|
||||
}
|
||||
|
||||
int ModularGraphicsBackend::getDefaultScaleFactor() const {
|
||||
uint ModularGraphicsBackend::getDefaultScaleFactor() const {
|
||||
return _graphicsManager->getDefaultScaleFactor();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue