aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/screen_lol.cpp
diff options
context:
space:
mode:
authorFlorian Kagerer2009-03-17 18:27:56 +0000
committerFlorian Kagerer2009-03-17 18:27:56 +0000
commit769184c483eb58029ba10adda89ed5030ef9c960 (patch)
tree41d2253d4b332fac430c9e4a9bcbd4fd23babdc0 /engines/kyra/screen_lol.cpp
parent7697fd9cc7b25f35623a8381376c9168c6b6950e (diff)
downloadscummvm-rg350-769184c483eb58029ba10adda89ed5030ef9c960.tar.gz
scummvm-rg350-769184c483eb58029ba10adda89ed5030ef9c960.tar.bz2
scummvm-rg350-769184c483eb58029ba10adda89ed5030ef9c960.zip
LOL: added some new drawing code required for some shapes and fixed a minor text displaying bug
svn-id: r39487
Diffstat (limited to 'engines/kyra/screen_lol.cpp')
-rw-r--r--engines/kyra/screen_lol.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/engines/kyra/screen_lol.cpp b/engines/kyra/screen_lol.cpp
index 884dee4712..16f1c96ec1 100644
--- a/engines/kyra/screen_lol.cpp
+++ b/engines/kyra/screen_lol.cpp
@@ -46,7 +46,6 @@ Screen_LoL::Screen_LoL(LoLEngine *vm, OSystem *system) : Screen_v2(vm, system),
_fadeFlag = 2;
_curDimIndex = 0;
- _dimLineCount = 0;
}
Screen_LoL::~Screen_LoL() {
@@ -67,7 +66,6 @@ void Screen_LoL::setScreenDim(int dim) {
assert(dim < _screenDimTableCount);
_curDim = _customDimTable[dim] ? (const ScreenDim *)_customDimTable[dim] : &_screenDimTable[dim];
_curDimIndex = dim;
- _dimLineCount = 0;
}
const ScreenDim *Screen_LoL::getScreenDim(int dim) {
@@ -87,11 +85,6 @@ void Screen_LoL::modifyScreenDim(int dim, int x, int y, int w, int h) {
setScreenDim(dim);
}
-void Screen_LoL::clearDim(int dim) {
- const ScreenDim *tmp = getScreenDim(dim);
- fillRect(tmp->sx << 3, tmp->sy, ((tmp->sx + tmp->w) << 3) - 1, (tmp->sy + tmp->h) - 1, tmp->unkA);
-}
-
void Screen_LoL::fprintString(const char *format, int x, int y, uint8 col1, uint8 col2, uint16 flags, ...) {
debugC(9, kDebugLevelScreen, "Screen_LoL::fprintString('%s', %d, %d, %d, %d, %d, ...)", format, x, y, col1, col2, flags);
if (!format)