mirror of https://github.com/stella-emu/stella.git
Fixed wrong labels on RAM cells in RamWidget.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@617 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
8aff84f2c3
commit
2be337302a
|
@ -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: RamWidget.cxx,v 1.17 2005-07-07 15:19:04 stephena Exp $
|
// $Id: RamWidget.cxx,v 1.18 2005-07-07 20:51: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
|
||||||
|
@ -174,7 +174,7 @@ void RamWidget::handleCommand(CommandSender* sender, int cmd, int data, int id)
|
||||||
addr = myRamGrid->getSelectedAddr();
|
addr = myRamGrid->getSelectedAddr();
|
||||||
value = myRamGrid->getSelectedValue();
|
value = myRamGrid->getSelectedValue();
|
||||||
|
|
||||||
buf = instance()->debugger().equates()->getLabel(addr);
|
buf = instance()->debugger().equates()->getLabel(addr+kRamStart);
|
||||||
if(buf) myLabel->setEditString(buf);
|
if(buf) myLabel->setEditString(buf);
|
||||||
else myLabel->setEditString("");
|
else myLabel->setEditString("");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue