aboutsummaryrefslogtreecommitdiff
path: root/queen/graphics.h
diff options
context:
space:
mode:
authorGregory Montoir2003-10-18 17:12:50 +0000
committerGregory Montoir2003-10-18 17:12:50 +0000
commiteadf6356d385e3be0c8fa793007fe9e4b13da3b4 (patch)
tree2aa908d73fd69d1f33ecd8ae01c417166403eaed /queen/graphics.h
parent673b211fdadd3c10dc31b013edab2a207aeaab68 (diff)
downloadscummvm-rg350-eadf6356d385e3be0c8fa793007fe9e4b13da3b4.tar.gz
scummvm-rg350-eadf6356d385e3be0c8fa793007fe9e4b13da3b4.tar.bz2
scummvm-rg350-eadf6356d385e3be0c8fa793007fe9e4b13da3b4.zip
fix bob clipping errors
svn-id: r10899
Diffstat (limited to 'queen/graphics.h')
-rw-r--r--queen/graphics.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/queen/graphics.h b/queen/graphics.h
index e58c751119..ece8571910 100644
--- a/queen/graphics.h
+++ b/queen/graphics.h
@@ -125,10 +125,10 @@ public:
void bobSetupControl();
void bobAnimString(uint32 bobnum, const AnimFrame *buf); // stringanim()
void bobAnimNormal(uint32 bobnum, uint16 firstFrame, uint16 lastFrame, uint16 speed, bool rebound, bool xflip); // makeanim()
- void bobMove(uint32 bobnum, uint16 endx, uint16 endy, int16 speed); // movebob()
- void bobDraw(uint32 bobnum, uint16 x, uint16 y, uint16 scale, bool xflip, const Box& box); // bob()
+ void bobMove(uint32 bobnum, int16 endx, int16 endy, int16 speed); // movebob()
+ void bobDraw(uint32 bobnum, int16 x, int16 y, uint16 scale, bool xflip, const Box& box); // bob()
void bobDrawInventoryItem(uint32 bobnum, uint16 x, uint16 y); // invbob()
- void bobPaste(uint32 bobnum, uint16 x, uint16 y); // bobpaste()
+ void bobPaste(uint32 bobnum, int16 x, int16 y); // bobpaste()
void bobShrink(const BobFrame* pbf, uint16 percentage); // shrinkbob()
void bobClear(uint32 bobnum); // clearbob()
void bobSortAll(); // sortbobs()