mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 15:21:40 +00:00
findGame is static class method now
svn-id: r10864
This commit is contained in:
parent
aadb0aa237
commit
df7cda84d3
@ -245,10 +245,10 @@ void LauncherDialog::updateListing() {
|
||||
if (name.isEmpty())
|
||||
name = iter->_key;
|
||||
if (description.isEmpty()) {
|
||||
GameSettings g = _detector.findGame(name);
|
||||
GameSettings g = GameDetector::findGame(name);
|
||||
if (g.description)
|
||||
description = g.description;
|
||||
}
|
||||
}
|
||||
|
||||
if (!name.isEmpty() && !description.isEmpty()) {
|
||||
// Insert the game into the launcher list
|
||||
@ -388,7 +388,7 @@ void LauncherDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 dat
|
||||
String gameId(ConfMan.get("gameid", _domains[item]));
|
||||
if (gameId.isEmpty())
|
||||
gameId = _domains[item];
|
||||
EditGameDialog editDialog(_gui, _domains[item], _detector.findGame(gameId));
|
||||
EditGameDialog editDialog(_gui, _domains[item], GameDetector::findGame(gameId));
|
||||
if (editDialog.runModal()) {
|
||||
// User pressed OK, so make changes permanent
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user