aboutsummaryrefslogtreecommitdiff
path: root/queen/graphics.h
diff options
context:
space:
mode:
authorGregory Montoir2004-01-20 21:58:26 +0000
committerGregory Montoir2004-01-20 21:58:26 +0000
commitff43b1f8d52412441123d70f18309a6770976f7c (patch)
tree83858f39a409add219b8654c3a58f6bff87150b2 /queen/graphics.h
parentd26fd46cd013459c37d208a8e7cda08e4e434073 (diff)
downloadscummvm-rg350-ff43b1f8d52412441123d70f18309a6770976f7c.tar.gz
scummvm-rg350-ff43b1f8d52412441123d70f18309a6770976f7c.tar.bz2
scummvm-rg350-ff43b1f8d52412441123d70f18309a6770976f7c.zip
- fixed bug #880415 (only setup bam scene after all _vm->update() calls)
- constness svn-id: r12564
Diffstat (limited to 'queen/graphics.h')
-rw-r--r--queen/graphics.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/queen/graphics.h b/queen/graphics.h
index 88fc2a65c0..967657461b 100644
--- a/queen/graphics.h
+++ b/queen/graphics.h
@@ -95,7 +95,7 @@ public:
void unpackControlBank();
void setupMouseCursor();
- void drawBob(const BobSlot *bs, BobFrame *bf, int16 x, int16 y);
+ void drawBob(const BobSlot *bs, const BobFrame *bf, int16 x, int16 y);
void drawInventoryItem(uint32 frameNum, uint16 x, uint16 y);
void pasteBob(uint16 objNum, uint16 image);
void shrinkFrame(const BobFrame *bf, uint16 percentage);
@@ -105,7 +105,7 @@ public:
void clearBobs();
void stopBobs();
BobSlot *bob(int index);
- void setBobText(BobSlot *bob, const char *text, int textX, int textY, int color, int flags);
+ void setBobText(const BobSlot *bob, const char *text, int textX, int textY, int color, int flags);
void handleParallax(uint16 roomNum);