diff options
Diffstat (limited to 'engines/hopkins/globals.h')
-rw-r--r-- | engines/hopkins/globals.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/engines/hopkins/globals.h b/engines/hopkins/globals.h index 6a8deecffb..a9fc30ff9c 100644 --- a/engines/hopkins/globals.h +++ b/engines/hopkins/globals.h @@ -283,6 +283,14 @@ struct Sauvegarde { int16 inventory[35]; // Originally at offset 1300 of data array }; +struct CreditItem { + bool _actvFl; + int _colour; + int _linePosY; + int _lineSize; + byte _line[49]; +}; + class HopkinsEngine; /** @@ -458,7 +466,7 @@ public: int Credit_by1; int Credit_y; int Credit_lignes; - byte Credit[12000]; + CreditItem Credit[200]; int Credit_step; int Credit_l; int Credit_h; |