diff options
author | Torbjörn Andersson | 2015-06-13 12:27:17 +0200 |
---|---|---|
committer | Torbjörn Andersson | 2015-06-13 12:27:17 +0200 |
commit | 276a96f1274b3606f666e0c3ac9fb62d5659d24a (patch) | |
tree | e0d7f7733d1d6fed44db3d0a25335fdaeb9b6361 /engines/sherlock/scalpel | |
parent | 26072306de2a22e7b090ff49f7b720807b76bcbc (diff) | |
download | scummvm-rg350-276a96f1274b3606f666e0c3ac9fb62d5659d24a.tar.gz scummvm-rg350-276a96f1274b3606f666e0c3ac9fb62d5659d24a.tar.bz2 scummvm-rg350-276a96f1274b3606f666e0c3ac9fb62d5659d24a.zip |
SHERLOCK: Added color enum for 235 (button background color?)
At some point, at least some of these will have to be handled
differentl for the 3DO version, since it uses 16 bpp. I hope this
will make them easier to find when that time comes.
Diffstat (limited to 'engines/sherlock/scalpel')
-rw-r--r-- | engines/sherlock/scalpel/scalpel_user_interface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/scalpel/scalpel_user_interface.cpp b/engines/sherlock/scalpel/scalpel_user_interface.cpp index 8dd15e5827..ef9221882e 100644 --- a/engines/sherlock/scalpel/scalpel_user_interface.cpp +++ b/engines/sherlock/scalpel/scalpel_user_interface.cpp @@ -1079,7 +1079,7 @@ void ScalpelUserInterface::doInvControl() { } if (_selector != -1) - inv.highlight(_selector, 235); + inv.highlight(_selector, BUTTON_BACKGROUND); _oldSelector = _selector; } |