mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix LCDC background priority/enable bit being mis-mapped in I/O view
This commit is contained in:
parent
b723ed4764
commit
8b1efec116
1
CHANGES
1
CHANGES
|
@ -24,6 +24,7 @@ Other fixes:
|
|||
- Qt: Fix savestate preview sizes with different scales (fixes mgba.io/i/2560)
|
||||
- Qt: Fix potential crash when configuring shortcuts
|
||||
- Qt: Fix crash when applying changes to GB I/O registers in I/O view
|
||||
- Qt: Fix LCDC background priority/enable bit being mis-mapped in I/O view
|
||||
- Updater: Fix updating appimage across filesystems
|
||||
Misc:
|
||||
- Core: Handle relative paths for saves, screenshots, etc consistently (fixes mgba.io/i/2826)
|
||||
|
|
|
@ -1323,7 +1323,7 @@ const QList<IOViewer::RegisterDescription>& IOViewer::registerDescriptions(mPlat
|
|||
});
|
||||
// 0xFF40: LCDC
|
||||
regGB.append({
|
||||
{ tr("Background enable/priority"), 1 },
|
||||
{ tr("Background enable/priority"), 0 },
|
||||
{ tr("Enable sprites"), 1 },
|
||||
{ tr("Double-height sprites"), 2 },
|
||||
{ tr("Background tile map"), 3, 1, {
|
||||
|
|
Loading…
Reference in New Issue