diff options
author | Gregory Montoir | 2003-12-30 22:01:16 +0000 |
---|---|---|
committer | Gregory Montoir | 2003-12-30 22:01:16 +0000 |
commit | 80b4510da16e76fb843b69b5e2d0c969271159bd (patch) | |
tree | 0e1e9bc56362d481c1e6324f2541abc4901af0ad /queen | |
parent | 985f24729ab1dcc827ea4082117ef5d92620fcc3 (diff) | |
download | scummvm-rg350-80b4510da16e76fb843b69b5e2d0c969271159bd.tar.gz scummvm-rg350-80b4510da16e76fb843b69b5e2d0c969271159bd.tar.bz2 scummvm-rg350-80b4510da16e76fb843b69b5e2d0c969271159bd.zip |
remove hack from original code, this was apparently only needed for SELECT_VERB (from what I understood, bob 16 was supposed to highlight the current selected verb ; but the original doesn't use it at all)
svn-id: r12041
Diffstat (limited to 'queen')
-rw-r--r-- | queen/graphics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/queen/graphics.cpp b/queen/graphics.cpp index 7080d36982..5f87f18130 100644 --- a/queen/graphics.cpp +++ b/queen/graphics.cpp @@ -412,7 +412,7 @@ void Graphics::bobShrink(const BobFrame *bf, uint16 percentage) { void Graphics::bobClear(uint32 bobnum) { BobSlot *pbs = &_bobs[bobnum]; pbs->clear(); - if (_vm->display()->fullscreen() || bobnum == 16) { // FIXME: does bob number 16 really used ? + if (_vm->display()->fullscreen()) { pbs->box.y2 = GAME_SCREEN_HEIGHT - 1; } } |