aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Comstedt2006-01-27 13:48:14 +0000
committerMarcus Comstedt2006-01-27 13:48:14 +0000
commit5b1718f17b105bd72c301e2f6f42d8075a5469b3 (patch)
tree32f6e667242a81bd7a81a3638aa2f0aecc593681
parentc08547d370a5f2d8ad4994edc5a27d091549d7f7 (diff)
downloadscummvm-rg350-5b1718f17b105bd72c301e2f6f42d8075a5469b3.tar.gz
scummvm-rg350-5b1718f17b105bd72c301e2f6f42d8075a5469b3.tar.bz2
scummvm-rg350-5b1718f17b105bd72c301e2f6f42d8075a5469b3.zip
fingolfin renamed 'GameSettings::name' to 'GameSettings::gameid'.
svn-id: r20222
-rw-r--r--backends/dc/selector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/dc/selector.cpp b/backends/dc/selector.cpp
index 268092fc99..f24f51a642 100644
--- a/backends/dc/selector.cpp
+++ b/backends/dc/selector.cpp
@@ -229,7 +229,7 @@ static int findGames(Game *games, int max)
for(DetectedGameList::const_iterator ge = candidates.begin();
ge != candidates.end(); ++ge)
if(curr_game < max) {
- strcpy(games[curr_game].filename_base, ge->name);
+ strcpy(games[curr_game].filename_base, ge->gameid);
strcpy(games[curr_game].dir, dirs[curr_dir-1].name);
if(uniqueGame(games[curr_game].filename_base,
games[curr_game].dir, games, curr_game)) {