aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/file.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/engine/file.h')
-rw-r--r--engines/sci/engine/file.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/engines/sci/engine/file.h b/engines/sci/engine/file.h
index b960058346..7d2461fd7a 100644
--- a/engines/sci/engine/file.h
+++ b/engines/sci/engine/file.h
@@ -65,8 +65,12 @@ struct SavegameDesc {
char name[SCI_MAX_SAVENAME_LENGTH];
Common::String gameVersion;
#ifdef ENABLE_SCI32
- // Used by Shivers 1
- uint32 score;
+ union {
+ // Used by Shivers 1
+ uint32 score;
+ // Used by MGDX
+ uint8 avatarId;
+ };
#endif
};