A few more UI palette tweaks.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1340 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2007-08-06 21:32:10 +00:00
parent 2c21d4b0de
commit eb02480491
2 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@
// See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
//
// $Id: OSystem.cxx,v 1.101 2007-08-06 20:16:51 stephena Exp $
// $Id: OSystem.cxx,v 1.102 2007-08-06 21:32:10 stephena Exp $
//============================================================================
#include <cassert>
@ -805,7 +805,7 @@ uInt32 OSystem::ourGUIColors[kNumUIPalettes][kNumColors-256] = {
0x62a108, // kTextColorHi
0xc80000, // kTextColorEm
0xe69d10, // kDlgColor
0xffffde, // kListColor
0xf0f0cf, // kListColor
0xac3410, // kBtnColor
0xd55941, // kBtnColorHi
0xffffff, // kBtnFntColor

View File

@ -13,7 +13,7 @@
// See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
//
// $Id: PopUpWidget.cxx,v 1.34 2007-08-06 20:16:51 stephena Exp $
// $Id: PopUpWidget.cxx,v 1.35 2007-08-06 21:32:10 stephena Exp $
//
// Based on code from ScummVM - Scumm Interpreter
// Copyright (C) 2002-2004 The ScummVM project
@ -232,7 +232,7 @@ void PopUpDialog::drawMenuEntry(int entry, bool hilite)
}
string& name = _popUpBoss->_entries[entry].name;
fb.fillRect(x, y, w, _popUpBoss->_fontHeight, hilite ? kTextColorHi : kBGColor);
fb.fillRect(x, y, w, _popUpBoss->_fontHeight, hilite ? kTextColorHi : kListColor);
if(name.size() == 0)
{