Qt: Fix a crash in the memory viewer

This commit is contained in:
Jeffrey Pfau 2015-11-04 23:28:13 -08:00
parent 066ba16864
commit f013e2d8c7
2 changed files with 4 additions and 0 deletions

View File

@ -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

View File

@ -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;