diff options
author | Paul Gilbert | 2015-06-25 21:36:26 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-06-25 21:36:26 -0400 |
commit | 9bbeaa668a559be34638c579310d0e832a278c6d (patch) | |
tree | e1d02a6ed65cca8ea5b39c9e27919c59d3b961b6 /engines/sherlock/tattoo | |
parent | 6d35a547ad86977b67077c5e8069b3679828a09b (diff) | |
download | scummvm-rg350-9bbeaa668a559be34638c579310d0e832a278c6d.tar.gz scummvm-rg350-9bbeaa668a559be34638c579310d0e832a278c6d.tar.bz2 scummvm-rg350-9bbeaa668a559be34638c579310d0e832a278c6d.zip |
SHERLOCK: RT: Set up new values for color constants
Diffstat (limited to 'engines/sherlock/tattoo')
-rw-r--r-- | engines/sherlock/tattoo/tattoo.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/engines/sherlock/tattoo/tattoo.h b/engines/sherlock/tattoo/tattoo.h index d4f20bb0a0..cd985d433a 100644 --- a/engines/sherlock/tattoo/tattoo.h +++ b/engines/sherlock/tattoo/tattoo.h @@ -30,14 +30,19 @@ namespace Sherlock { namespace Tattoo { enum { + INV_FOREGROUND = 167, + INV_BACKGROUND = 1, + INFO_FOREGROUND = 233, + INFO_BACKGROUND = 239, INFO_TOP = 185, INFO_MIDDLE = 186, INFO_BOTTOM = 188, MENU_BACKGROUND = 225, COMMAND_FOREGROUND = 15, COMMAND_HIGHLIGHTED = 254, - COMMAND_NULL = 193 - + COMMAND_NULL = 193, + PEN_COLOR = 248, + PEN_HIGHLIGHT_COLOR = 129 }; class TattooEngine : public SherlockEngine { |