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 /gob/gob.h | |
| 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 'gob/gob.h')
| -rw-r--r-- | gob/gob.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -74,12 +74,12 @@ enum { }; typedef struct GobGameSettings { - const char *name; + const char *gameid; const char *description; uint32 features; const char *md5sum; GameSettings toGameSettings() const { - GameSettings dummy = { name, description, features }; + GameSettings dummy = { gameid, description, features }; return dummy; } } GobGameSettings; |
