mirror of
https://github.com/libretro/mgba.git
synced 2024-11-30 19:50:34 +00:00
Qt: Fix a crash in the memory viewer
This commit is contained in:
parent
066ba16864
commit
f013e2d8c7
1
CHANGES
1
CHANGES
@ -14,6 +14,7 @@ Bugfixes:
|
||||
- VFS: Fix VFileReadline and remove _vfdReadline
|
||||
- Qt: Fix font size in memory viewer
|
||||
- GBA Memory: Fix DMA register writing behavior
|
||||
- Qt: Fix a crash in the memory viewer
|
||||
Misc:
|
||||
- Qt: Window size command line options are now supported
|
||||
- Qt: Increase usability of key mapper
|
||||
|
@ -80,6 +80,9 @@ void MemoryView::updateStatus() {
|
||||
m_ui.uintVal->clear();
|
||||
return;
|
||||
}
|
||||
if (!m_controller->isLoaded()) {
|
||||
return;
|
||||
}
|
||||
ARMCore* cpu = m_controller->thread()->cpu;
|
||||
union {
|
||||
uint32_t u32;
|
||||
|
Loading…
Reference in New Issue
Block a user