diff options
author | Paul Gilbert | 2019-05-15 13:56:34 -1000 |
---|---|---|
committer | Paul Gilbert | 2019-05-15 13:56:34 -1000 |
commit | 6cecf9c0c6a6f8c03e94f2300428643b98a0efad (patch) | |
tree | d4a0d3d1a0a6e41cee7db548547f833c0d80d4fd /engines/glk/hugo | |
parent | 546160c1c17f5ce29e263c3d35188320276ae76e (diff) | |
download | scummvm-rg350-6cecf9c0c6a6f8c03e94f2300428643b98a0efad.tar.gz scummvm-rg350-6cecf9c0c6a6f8c03e94f2300428643b98a0efad.tar.bz2 scummvm-rg350-6cecf9c0c6a6f8c03e94f2300428643b98a0efad.zip |
GLK: HUGO: Fix initializing object size
Diffstat (limited to 'engines/glk/hugo')
-rw-r--r-- | engines/glk/hugo/hugo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/hugo/hugo.cpp b/engines/glk/hugo/hugo.cpp index 34353082ed..e6283d16d0 100644 --- a/engines/glk/hugo/hugo.cpp +++ b/engines/glk/hugo/hugo.cpp @@ -34,7 +34,7 @@ Hugo::Hugo(OSystem *syst, const GlkGameDescription &gameDesc) : GlkAPI(syst, gam // hemedia mchannel(nullptr), schannel(nullptr), // hemisc - game_version(0), object_size(0), game(nullptr), script(nullptr), save(nullptr), + game_version(0), object_size(24), game(nullptr), script(nullptr), save(nullptr), playback(nullptr), record(nullptr), io(nullptr), ioblock('\0'), ioerror('\0'), codestart(0), objtable(0), eventtable(0), proptable(0), arraytable(0), dicttable(0), syntable(0), initaddr(0), mainaddr(0), parseaddr(0), parseerroraddr(0), |