diff options
author | Bendegúz Nagy | 2016-06-20 21:51:34 +0200 |
---|---|---|
committer | Bendegúz Nagy | 2016-08-26 23:02:22 +0200 |
commit | b068beb33f38c2f3a4cb8c5ea0b26ad53b3e35b0 (patch) | |
tree | 31075978f15e0fcc8d52bea6d7797c88a077c9af | |
parent | 3134891f6cf62b1c20f2622030bfd2deb2ecefee (diff) | |
download | scummvm-rg350-b068beb33f38c2f3a4cb8c5ea0b26ad53b3e35b0.tar.gz scummvm-rg350-b068beb33f38c2f3a4cb8c5ea0b26ad53b3e35b0.tar.bz2 scummvm-rg350-b068beb33f38c2f3a4cb8c5ea0b26ad53b3e35b0.zip |
DM: Add G0032_s_Graphic562_Box_Panel, G0035_s_Graphic562_Box_Food, G0036_s_Graphic562_Box_Water, G0037_s_Graphic562_Box_Poisoned
-rw-r--r-- | engines/dm/inventory.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/dm/inventory.cpp b/engines/dm/inventory.cpp index 15dbd7e82f..2e7f2544f4 100644 --- a/engines/dm/inventory.cpp +++ b/engines/dm/inventory.cpp @@ -9,6 +9,10 @@ namespace DM { Box gBoxFloppyZzzCross = Box(174, 218, 2, 12); // @ G0041_s_Graphic562_Box_ViewportFloppyZzzCross +Box gBoxPanel = Box(80, 223, 52, 124); // @ G0032_s_Graphic562_Box_Panel +Box gBoxFood = Box(112, 159, 60, 68); // @ G0035_s_Graphic562_Box_Food +Box gBoxWater = Box(112, 159, 83, 91); // @ G0036_s_Graphic562_Box_Water +Box gBoxPoisoned = Box(112, 207, 105, 119); // @ G0037_s_Graphic562_Box_Poisoned InventoryMan::InventoryMan(DMEngine *vm) : _vm(vm) {} |