mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 14:17:57 -05:00
citra_qt: Remove VFP registers, since this isn't used anyways and caused an assert.
This commit is contained in:
@ -65,10 +65,6 @@ void RegistersWidget::OnDebugModeEntered() {
|
|||||||
core_registers->child(i)->setText(
|
core_registers->child(i)->setText(
|
||||||
1, QString("0x%1").arg(Core::CPU().GetReg(i), 8, 16, QLatin1Char('0')));
|
1, QString("0x%1").arg(Core::CPU().GetReg(i), 8, 16, QLatin1Char('0')));
|
||||||
|
|
||||||
for (int i = 0; i < vfp_registers->childCount(); ++i)
|
|
||||||
vfp_registers->child(i)->setText(
|
|
||||||
1, QString("0x%1").arg(Core::CPU().GetVFPReg(i), 8, 16, QLatin1Char('0')));
|
|
||||||
|
|
||||||
UpdateCPSRValues();
|
UpdateCPSRValues();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user