mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-11 03:34:13 +00:00
DGDS: Add another global for HoC
This commit is contained in:
parent
d308c4cbae
commit
5da28d3549
@ -210,10 +210,11 @@ Common::Error DragonGlobals::syncState(Common::Serializer &s) {
|
||||
}
|
||||
|
||||
HocGlobals::HocGlobals(Clock &clock) : Globals(clock),
|
||||
_unk39(0), _unk40(0), _unk45(0), _unk51(0), _unk52(0), _unk54(0) {
|
||||
_unk39(0), _unk40(0), _unk45(0), _unk48(0), _unk51(0), _unk52(0), _unk54(0) {
|
||||
_globals.push_back(new RWI16Global(0x36, &_unk54));
|
||||
_globals.push_back(new RWI16Global(0x34, &_unk52));
|
||||
_globals.push_back(new RWI16Global(0x33, &_unk51));
|
||||
_globals.push_back(new RWI16Global(0x30, &_unk48));
|
||||
_globals.push_back(new RWI16Global(0x2D, &_unk45));
|
||||
_globals.push_back(new RWI16Global(0x28, &_unk40));
|
||||
_globals.push_back(new RWI16Global(0x27, &_unk39));
|
||||
|
@ -153,6 +153,7 @@ private:
|
||||
int16 _unk39;
|
||||
int16 _unk40;
|
||||
int16 _unk45;
|
||||
int16 _unk48;
|
||||
int16 _unk51;
|
||||
int16 _unk52;
|
||||
int16 _unk54;
|
||||
|
Loading…
Reference in New Issue
Block a user