mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-26 06:18:23 +00:00
GUI: Fix GCC Signed vs. Unsigned Compiler Warning in Launcher
This commit is contained in:
parent
433dfc6981
commit
52beeb7dbd
@ -278,7 +278,7 @@ void LauncherDialog::updateListing() {
|
||||
// Retrieve a list of all games defined in the config file
|
||||
_domains.clear();
|
||||
const ConfigManager::DomainMap &domains = ConfMan.getGameDomains();
|
||||
bool scanEntries = numEntries == -1 ? true : (domains.size() <= numEntries);
|
||||
bool scanEntries = numEntries == -1 ? true : ((int)domains.size() <= numEntries);
|
||||
|
||||
// Turn it into a list of pointers
|
||||
Common::List<LauncherEntry> domainList;
|
||||
|
Loading…
x
Reference in New Issue
Block a user