aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.h
diff options
context:
space:
mode:
authorMax Horn2004-01-03 22:45:23 +0000
committerMax Horn2004-01-03 22:45:23 +0000
commitbceb48f5e0df08dc4288de4b16b4f21c6e403fc0 (patch)
tree253cd0a685f59a28c526337f34462fbe362d6d5c /scumm/scumm.h
parent105895da46818a2e440fa419aab7fb1bc5818f47 (diff)
downloadscummvm-rg350-bceb48f5e0df08dc4288de4b16b4f21c6e403fc0.tar.gz
scummvm-rg350-bceb48f5e0df08dc4288de4b16b4f21c6e403fc0.tar.bz2
scummvm-rg350-bceb48f5e0df08dc4288de4b16b4f21c6e403fc0.zip
renamed updateDirtyRect to markRectAsDirty (because that's what it really does); used virtual screen id constants in more places
svn-id: r12122
Diffstat (limited to 'scumm/scumm.h')
-rw-r--r--scumm/scumm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/scumm.h b/scumm/scumm.h
index 97f7d551b6..4c894b4976 100644
--- a/scumm/scumm.h
+++ b/scumm/scumm.h
@@ -792,7 +792,7 @@ protected:
StripTable *_roomStrips;
void initScreens(int b, int w, int h);
- void initVirtScreen(int slot, int number, int top, int width, int height, bool twobufs, bool scrollable);
+ void initVirtScreen(VirtScreenNumber slot, int number, int top, int width, int height, bool twobufs, bool scrollable);
void initBGBuffers(int height);
void initCycl(const byte *ptr); // Color cycle
@@ -855,10 +855,10 @@ protected:
public:
- void updateDirtyRect(int virt, int left, int right, int top, int bottom, int dirtybit);
+ void markRectAsDirty(VirtScreenNumber virt, int left, int right, int top, int bottom, int dirtybit);
protected:
void drawDirtyScreenParts();
- void updateDirtyScreen(int slot);
+ void updateDirtyScreen(VirtScreenNumber slot);
public:
VirtScreen *findVirtScreen(int y);