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
ff00fed81c
commit
63c0bedf44
1
CHANGES
1
CHANGES
|
@ -6,6 +6,7 @@ Emulation fixes:
|
|||
Other fixes:
|
||||
- GBA Memory: Let raw access read high MMIO addresses
|
||||
- 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:
|
||||
- Vita: Add imc0 and xmc0 mount point support
|
||||
|
|
|
@ -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