mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-23 11:04:44 +00:00
CHEWY: Move vec_tbl to a field of movclass
This commit is contained in:
parent
d7eda3abfe
commit
647932d865
@ -49,10 +49,13 @@ namespace Chewy {
|
||||
#define MOV_X 1
|
||||
#define MOV_Y 2
|
||||
|
||||
int16 vec_tbl[4] = { -40, 1, 40, -1};
|
||||
|
||||
movclass::movclass() {
|
||||
vec_tbl[0] = -40;
|
||||
vec_tbl[1] = 1;
|
||||
vec_tbl[2] = 40;
|
||||
vec_tbl[3] = -1;
|
||||
}
|
||||
|
||||
movclass::~movclass() {
|
||||
}
|
||||
|
||||
|
@ -133,6 +133,7 @@ private:
|
||||
MovLineExit mle;
|
||||
GotoMovLine gml;
|
||||
GotoPkt *gpkt = nullptr;
|
||||
int16 vec_tbl[4];
|
||||
};
|
||||
|
||||
} // namespace Chewy
|
||||
|
Loading…
x
Reference in New Issue
Block a user