aboutsummaryrefslogtreecommitdiff
path: root/gob/gob.h
diff options
context:
space:
mode:
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;