diff options
author | Max Horn | 2006-01-21 13:01:20 +0000 |
---|---|---|
committer | Max Horn | 2006-01-21 13:01:20 +0000 |
commit | 0b39c0ea9fbc43569a17f65db6fe6a89f29ccee1 (patch) | |
tree | c1b6170cbc006981a22b36c4b02f10bda699c542 /saga | |
parent | e34d963027194654259c4ce3499780671f36e133 (diff) | |
download | scummvm-rg350-0b39c0ea9fbc43569a17f65db6fe6a89f29ccee1.tar.gz scummvm-rg350-0b39c0ea9fbc43569a17f65db6fe6a89f29ccee1.tar.bz2 scummvm-rg350-0b39c0ea9fbc43569a17f65db6fe6a89f29ccee1.zip |
Fix various incorrect usages of the word 'target' instead of 'gameid'; change the ambigiuous 'GameSettings::name' to 'GameSettings::gameid'
svn-id: r20115
Diffstat (limited to 'saga')
-rw-r--r-- | saga/saga.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/saga/saga.cpp b/saga/saga.cpp index 45d8bf29ab..577787a4ce 100644 --- a/saga/saga.cpp +++ b/saga/saga.cpp @@ -65,7 +65,7 @@ GameList Engine_SAGA_gameList() { GameList games; const GameSettings *g = saga_games; - while (g->name) { + while (g->gameid) { games.push_back(*g); g++; } |