aboutsummaryrefslogtreecommitdiff
path: root/engines/dreamweb/stubs.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2011-12-28 11:37:46 +0200
committerFilippos Karapetis2011-12-28 11:38:18 +0200
commitfe98fbe972b4d1a2942bdc8a784f8205ba32fbdd (patch)
treef35d66e107d9ab109c2a63715f3985623f9cbe81 /engines/dreamweb/stubs.cpp
parent826769f8b8937f6d78c213d477a2a1b84be48b6a (diff)
downloadscummvm-rg350-fe98fbe972b4d1a2942bdc8a784f8205ba32fbdd.tar.gz
scummvm-rg350-fe98fbe972b4d1a2942bdc8a784f8205ba32fbdd.tar.bz2
scummvm-rg350-fe98fbe972b4d1a2942bdc8a784f8205ba32fbdd.zip
DREAMWEB: Move all zoom-related functions to vgagrafx.cpp, and remove a lot of unused global constants
Diffstat (limited to 'engines/dreamweb/stubs.cpp')
-rw-r--r--engines/dreamweb/stubs.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/engines/dreamweb/stubs.cpp b/engines/dreamweb/stubs.cpp
index edd41beb3a..dfc39f8667 100644
--- a/engines/dreamweb/stubs.cpp
+++ b/engines/dreamweb/stubs.cpp
@@ -1136,16 +1136,6 @@ void DreamBase::plotReel(uint16 &reelPointer) {
soundOnReels(reelPointer);
}
-void DreamBase::crosshair() {
- uint8 frame;
- if ((_commandType != 3) && (_commandType < 10)) {
- frame = 9;
- } else {
- frame = 29;
- }
- showFrame(_icons1, kZoomx + 24, kZoomy + 19, frame, 0);
-}
-
void DreamBase::delTextLine() {
if (_foreignRelease)
multiPut(_textUnder, _textAddressX, _textAddressY - 3, kUnderTextSizeX_f, kUnderTextSizeY_f);
@@ -2001,12 +1991,6 @@ void DreamBase::roomName() {
useCharset1();
}
-void DreamBase::zoomIcon() {
- if (data.byte(kZoomon) == 0)
- return;
- showFrame(_icons1, kZoomx, kZoomy-1, 8, 0);
-}
-
void DreamBase::loadRoom() {
_roomLoaded = 1;
_timeCount = 0;
@@ -2929,11 +2913,6 @@ bool DreamBase::isSetObOnMap(uint8 index) {
return (getSetAd(index)->mapad[0] == 0);
}
-void DreamBase::dumpZoom() {
- if (data.byte(kZoomon) == 1)
- multiDump(kZoomx + 5, kZoomy + 4, 46, 40);
-}
-
void DreamBase::examineInventory() {
if (_commandType != 249) {
_commandType = 249;
@@ -2969,14 +2948,6 @@ void DreamBase::underTextLine() {
multiGet(_textUnder, _textAddressX, _textAddressY, kUnderTextSizeX, kUnderTextSizeY);
}
-void DreamBase::getUnderZoom() {
- multiGet(_zoomSpace, kZoomx + 5, kZoomy + 4, 46, 40);
-}
-
-void DreamBase::putUnderZoom() {
- multiPut(_zoomSpace, kZoomx + 5, kZoomy + 4, 46, 40);
-}
-
void DreamBase::showWatchReel() {
uint16 reelPointer = data.word(kReeltowatch);
plotReel(reelPointer);