aboutsummaryrefslogtreecommitdiff
path: root/queen/graphics.h
diff options
context:
space:
mode:
authorGregory Montoir2004-01-04 20:25:21 +0000
committerGregory Montoir2004-01-04 20:25:21 +0000
commit143b5bea80762464b4d29040b101ec606703a73f (patch)
tree373bf839bcce32e0444c761c7bc3e4d24385aaff /queen/graphics.h
parent9d547b183bfd56d94ec0b644f3ae12b668fd864e (diff)
downloadscummvm-rg350-143b5bea80762464b4d29040b101ec606703a73f.tar.gz
scummvm-rg350-143b5bea80762464b4d29040b101ec606703a73f.tar.bz2
scummvm-rg350-143b5bea80762464b4d29040b101ec606703a73f.zip
- added code to only redraw changed blocks in order to avoid full screen refresh
- minor code cleanup in Graphics/Display svn-id: r12147
Diffstat (limited to 'queen/graphics.h')
-rw-r--r--queen/graphics.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/queen/graphics.h b/queen/graphics.h
index 116bc464c6..87b8f6f151 100644
--- a/queen/graphics.h
+++ b/queen/graphics.h
@@ -117,13 +117,13 @@ public:
void bobSetupControl();
void bobDraw(const BobSlot *bs, int16 x, int16 y);
- void bobDrawInventoryItem(uint32 bobnum, uint16 x, uint16 y); // invbob()
- void bobPaste(uint32 frameNum, int16 x, int16 y); // bobpaste()
+ void bobDrawInventoryItem(uint32 frameNum, uint16 x, uint16 y);
+ void bobPaste(uint16 objNum, uint16 image);
void bobShrink(const BobFrame *bf, uint16 percentage);
- void bobClear(uint32 bobnum); // clearbob()
- void bobSortAll(); // sortbobs()
- void bobDrawAll(); // drawbobs()
- void bobClearAll(); // clearallbobs()
+ void bobClear(uint32 bobNum);
+ void bobSortAll();
+ void bobDrawAll();
+ void bobClearAll();
void bobStopAll();
BobSlot *bob(int index);