mirror of https://github.com/stella-emu/stella.git
Fix minor warnings in g++10.
This commit is contained in:
parent
06c6c1ccaa
commit
15c40bb197
|
@ -2237,9 +2237,13 @@ int Thumbulator::execute()
|
|||
{
|
||||
rc = read32(sp);
|
||||
if(first)
|
||||
{
|
||||
INC_N_CYCLES(sp, AccessType::data);
|
||||
}
|
||||
else
|
||||
{
|
||||
INC_S_CYCLES(sp, AccessType::data);
|
||||
}
|
||||
rc += 2;
|
||||
write_register(15, rc);
|
||||
sp += 4;
|
||||
|
@ -2305,9 +2309,13 @@ int Thumbulator::execute()
|
|||
rc = read_register(14);
|
||||
write32(rd, rc);
|
||||
if(first)
|
||||
{
|
||||
INC_N_CYCLES(rd, AccessType::data);
|
||||
}
|
||||
else
|
||||
{
|
||||
INC_S_CYCLES(rd, AccessType::data);
|
||||
}
|
||||
if((rc & 1) == 0)
|
||||
{
|
||||
// FIXME fprintf(stderr,"push {lr} with an ARM address pc 0x%08X popped 0x%08X\n",pc,rc);
|
||||
|
|
|
@ -40,7 +40,7 @@ PopUpWidget::PopUpWidget(GuiObject* boss, const GUI::Font& font,
|
|||
_textcolorhi = kTextColor; // do not highlight the label
|
||||
|
||||
setTextFilter([](char c) {
|
||||
return isprint(c) && c != '\"' || c == '\x1c' || c == '\x1d'; // DEGREE || ELLIPSIS
|
||||
return (isprint(c) && c != '\"') || c == '\x1c' || c == '\x1d'; // DEGREE || ELLIPSIS
|
||||
});
|
||||
setEditable(false);
|
||||
|
||||
|
|
Loading…
Reference in New Issue