aboutsummaryrefslogtreecommitdiff
path: root/gob/gob.h
diff options
context:
space:
mode:
authorMax Horn2006-01-21 13:01:20 +0000
committerMax Horn2006-01-21 13:01:20 +0000
commit0b39c0ea9fbc43569a17f65db6fe6a89f29ccee1 (patch)
treec1b6170cbc006981a22b36c4b02f10bda699c542 /gob/gob.h
parente34d963027194654259c4ce3499780671f36e133 (diff)
downloadscummvm-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gob/gob.h b/gob/gob.h
index b7af9196bb..6a9de445f8 100644
--- a/gob/gob.h
+++ b/gob/gob.h
@@ -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;