aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel
diff options
context:
space:
mode:
authormd52011-04-10 05:48:20 +0300
committermd52011-04-10 14:27:47 +0300
commit69ec4fbf1be753f67c8de06fc9efc58786a255c3 (patch)
tree42f8aeb1d241be83ed79399e1e59dbc384e26b74 /engines/tinsel
parent3fde0306a44e1649d8922d59ea209a74736df8f2 (diff)
downloadscummvm-rg350-69ec4fbf1be753f67c8de06fc9efc58786a255c3.tar.gz
scummvm-rg350-69ec4fbf1be753f67c8de06fc9efc58786a255c3.tar.bz2
scummvm-rg350-69ec4fbf1be753f67c8de06fc9efc58786a255c3.zip
TINSEL: Removed the dummy ForceEntireRedraw() function
Diffstat (limited to 'engines/tinsel')
-rw-r--r--engines/tinsel/background.cpp8
-rw-r--r--engines/tinsel/background.h2
-rw-r--r--engines/tinsel/bmv.cpp1
3 files changed, 0 insertions, 11 deletions
diff --git a/engines/tinsel/background.cpp b/engines/tinsel/background.cpp
index 560216aadb..f895ecd2da 100644
--- a/engines/tinsel/background.cpp
+++ b/engines/tinsel/background.cpp
@@ -39,9 +39,6 @@ namespace Tinsel {
// current background
const BACKGND *pCurBgnd = NULL;
-// FIXME: Not yet used
-static bool bEntireRedraw;
-
/**
* Called to initialise a background.
* @param pBgnd Pointer to data struct for current background
@@ -257,9 +254,4 @@ void DrawBackgnd() {
ResetClipRect();
}
-void ForceEntireRedraw() {
- bEntireRedraw = true;
-}
-
-
} // End of namespace Tinsel
diff --git a/engines/tinsel/background.h b/engines/tinsel/background.h
index 81b490488e..d0b27e6e40 100644
--- a/engines/tinsel/background.h
+++ b/engines/tinsel/background.h
@@ -110,8 +110,6 @@ OBJECT *GetBgObject();
SCNHANDLE BgPal();
-void ForceEntireRedraw();
-
int BgWidth();
int BgHeight();
diff --git a/engines/tinsel/bmv.cpp b/engines/tinsel/bmv.cpp
index a459f2c919..b5b84ceaee 100644
--- a/engines/tinsel/bmv.cpp
+++ b/engines/tinsel/bmv.cpp
@@ -1025,7 +1025,6 @@ bool BMVPlayer::DoSoundFrame() {
void BMVPlayer::CopyMovieToScreen() {
// Not if not up and running yet!
if (!screenBuffer || (currentFrame == 0)) {
- ForceEntireRedraw();
DrawBackgnd();
return;
}