mirror of https://github.com/stella-emu/stella.git
Fixed only minor compiler warning.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2991 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
b7cdaad634
commit
2cb4d31c5b
|
@ -41,7 +41,7 @@ CartridgeMDMWidget::CartridgeMDMWidget(
|
||||||
ypos = addBaseInformation(size, "Edwin Blink", info.str(), 15) + myLineHeight;
|
ypos = addBaseInformation(size, "Edwin Blink", info.str(), 15) + myLineHeight;
|
||||||
|
|
||||||
VariantList items;
|
VariantList items;
|
||||||
for(uInt32 i = 0x800; i < (0x800 + myCart.bankCount()); ++i)
|
for(uInt32 i = 0x800; i < (0x800u + myCart.bankCount()); ++i)
|
||||||
{
|
{
|
||||||
info.str("");
|
info.str("");
|
||||||
info << dec << (i & 0xFF) << " ($" << Common::Base::HEX4 << i << ")";
|
info << dec << (i & 0xFF) << " ($" << Common::Base::HEX4 << i << ")";
|
||||||
|
|
Loading…
Reference in New Issue