mirror of https://github.com/stella-emu/stella.git
And yet more updates; I've submitted two fixes for this section of code,
and I still missed this one :) git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1623 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
e170e097d1
commit
f834f0dd06
|
@ -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: Debugger.cxx,v 1.131 2009-01-14 20:31:07 stephena Exp $
|
||||
// $Id: Debugger.cxx,v 1.132 2009-01-15 21:04:47 stephena Exp $
|
||||
//============================================================================
|
||||
|
||||
#include "bspf.hxx"
|
||||
|
@ -78,8 +78,8 @@ static const string builtin_functions[][3] = {
|
|||
{ "_reset", "!(*SWCHB & $01)", "Game Reset pressed" },
|
||||
{ "_color", "*SWCHB & $08", "Color/BW set to Color" },
|
||||
{ "_bw", "!(*SWCHB & $08)", "Color/BW set to BW" },
|
||||
{ "_diff0b", "!(*SWCHB & $40)", "Right difficulty set to B (easy)" },
|
||||
{ "_diff0a", "*SWCHB & $40", "Right difficulty set to A (hard)" },
|
||||
{ "_diff0b", "!(*SWCHB & $40)", "Left difficulty set to B (easy)" },
|
||||
{ "_diff0a", "*SWCHB & $40", "Left difficulty set to A (hard)" },
|
||||
{ "_diff1b", "!(*SWCHB & $80)", "Right difficulty set to B (easy)" },
|
||||
{ "_diff1a", "*SWCHB & $80", "Right difficulty set to A (hard)" },
|
||||
|
||||
|
|
Loading…
Reference in New Issue