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:
stephena 2013-08-11 23:16:08 +00:00
parent 45115d5754
commit 19d9d5bc99
1 changed files with 1 additions and 2 deletions

View File

@ -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] = {