mirror of https://github.com/stella-emu/stella.git
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:
parent
2c21d4b0de
commit
eb02480491
|
@ -13,7 +13,7 @@
|
||||||
// See the file "license" for information on usage and redistribution of
|
// See the file "license" for information on usage and redistribution of
|
||||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
// 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>
|
#include <cassert>
|
||||||
|
@ -805,7 +805,7 @@ uInt32 OSystem::ourGUIColors[kNumUIPalettes][kNumColors-256] = {
|
||||||
0x62a108, // kTextColorHi
|
0x62a108, // kTextColorHi
|
||||||
0xc80000, // kTextColorEm
|
0xc80000, // kTextColorEm
|
||||||
0xe69d10, // kDlgColor
|
0xe69d10, // kDlgColor
|
||||||
0xffffde, // kListColor
|
0xf0f0cf, // kListColor
|
||||||
0xac3410, // kBtnColor
|
0xac3410, // kBtnColor
|
||||||
0xd55941, // kBtnColorHi
|
0xd55941, // kBtnColorHi
|
||||||
0xffffff, // kBtnFntColor
|
0xffffff, // kBtnFntColor
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
// See the file "license" for information on usage and redistribution of
|
// See the file "license" for information on usage and redistribution of
|
||||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
// 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
|
// Based on code from ScummVM - Scumm Interpreter
|
||||||
// Copyright (C) 2002-2004 The ScummVM project
|
// Copyright (C) 2002-2004 The ScummVM project
|
||||||
|
@ -232,7 +232,7 @@ void PopUpDialog::drawMenuEntry(int entry, bool hilite)
|
||||||
}
|
}
|
||||||
|
|
||||||
string& name = _popUpBoss->_entries[entry].name;
|
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)
|
if(name.size() == 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue