aboutsummaryrefslogtreecommitdiff
path: root/scumm/verbs.cpp
diff options
context:
space:
mode:
authorMax Horn2004-01-06 11:47:34 +0000
committerMax Horn2004-01-06 11:47:34 +0000
commitcc67301791cd46bc6e81bb76ef30c45d692a7547 (patch)
tree300a72019bd2213d2c7ab415977dafe0e7641dfd /scumm/verbs.cpp
parent3b20850a8906d1be6bd2eb8f2a1f506975ae17df (diff)
downloadscummvm-rg350-cc67301791cd46bc6e81bb76ef30c45d692a7547.tar.gz
scummvm-rg350-cc67301791cd46bc6e81bb76ef30c45d692a7547.tar.bz2
scummvm-rg350-cc67301791cd46bc6e81bb76ef30c45d692a7547.zip
renamed VirtScreen::alloctwobuffers to hasTwoBuffers; added lots of doxygen comments to VirtScreen; cleanup
svn-id: r12168
Diffstat (limited to 'scumm/verbs.cpp')
-rw-r--r--scumm/verbs.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/verbs.cpp b/scumm/verbs.cpp
index 6891fc3a54..15fceedf1f 100644
--- a/scumm/verbs.cpp
+++ b/scumm/verbs.cpp
@@ -449,8 +449,8 @@ void ScummEngine::drawVerbBitmap(int verb, int x, int y) {
gdi.disableZBuffer();
- twobufs = vs->alloctwobuffers;
- vs->alloctwobuffers = 0;
+ twobufs = vs->hasTwoBuffers;
+ vs->hasTwoBuffers = 0;
xstrip = x / 8;
ydiff = y - vs->topline;
@@ -499,7 +499,7 @@ void ScummEngine::drawVerbBitmap(int verb, int x, int y) {
gdi.enableZBuffer();
- vs->alloctwobuffers = twobufs;
+ vs->hasTwoBuffers = twobufs;
}
int ScummEngine::getVerbSlot(int id, int mode) const {