mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 06:39:17 +00:00
small tweak, no functionality changed
svn-id: r4363
This commit is contained in:
parent
0c861c9ff2
commit
3da77a0590
11
verbs.cpp
11
verbs.cpp
@ -116,7 +116,6 @@ int Scumm::checkMouseOver(int x, int y)
|
||||
void Scumm::drawVerb(int vrb, int mode)
|
||||
{
|
||||
VerbSlot *vs;
|
||||
byte color;
|
||||
byte tmp;
|
||||
|
||||
if (!vrb)
|
||||
@ -136,13 +135,13 @@ void Scumm::drawVerb(int vrb, int mode)
|
||||
string[4].ypos = vs->y;
|
||||
string[4].right = 319;
|
||||
string[4].center = vs->center;
|
||||
if (mode && vs->hicolor)
|
||||
color = vs->hicolor;
|
||||
else
|
||||
color = vs->color;
|
||||
string[4].color = color;
|
||||
|
||||
if (vs->curmode == 2)
|
||||
string[4].color = vs->dimcolor;
|
||||
else if (mode && vs->hicolor)
|
||||
string[4].color = vs->hicolor;
|
||||
else
|
||||
string[4].color = vs->color;
|
||||
|
||||
// FIXME For the future: Indy3 and under inv scrolling
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user