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
|
- VFS: Fix VFileReadline and remove _vfdReadline
|
||||||
- Qt: Fix font size in memory viewer
|
- Qt: Fix font size in memory viewer
|
||||||
- GBA Memory: Fix DMA register writing behavior
|
- GBA Memory: Fix DMA register writing behavior
|
||||||
|
- Qt: Fix a crash in the memory viewer
|
||||||
Misc:
|
Misc:
|
||||||
- Qt: Window size command line options are now supported
|
- Qt: Window size command line options are now supported
|
||||||
- Qt: Increase usability of key mapper
|
- Qt: Increase usability of key mapper
|
||||||
|
@ -80,6 +80,9 @@ void MemoryView::updateStatus() {
|
|||||||
m_ui.uintVal->clear();
|
m_ui.uintVal->clear();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (!m_controller->isLoaded()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
ARMCore* cpu = m_controller->thread()->cpu;
|
ARMCore* cpu = m_controller->thread()->cpu;
|
||||||
union {
|
union {
|
||||||
uint32_t u32;
|
uint32_t u32;
|
||||||
|
Loading…
Reference in New Issue
Block a user