mirror of https://github.com/stella-emu/stella.git
Fixed bug that crept into the new HEX handling code. It was left-justifying
values, which messed up code running from RAM (ie, address $80 became $8000!). git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2790 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
45115d5754
commit
19d9d5bc99
|
@ -100,8 +100,7 @@ string Base::toString(int value, Common::Base::Format outputBase)
|
|||
Base::Format Base::myDefaultBase = Base::F_16;
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
std::ios_base::fmtflags Base::myHexflags =
|
||||
std::ios_base::hex | std::ios_base::left;
|
||||
std::ios_base::fmtflags Base::myHexflags = std::ios_base::hex;
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
const char* Base::myLowerFmt[4] = {
|
||||
|
|
Loading…
Reference in New Issue