mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
ImDebugger: Fix titles of MIPS register views
This commit is contained in:
parent
59aaff5954
commit
dce6d35a27
1 changed files with 3 additions and 3 deletions
|
@ -141,7 +141,7 @@ void DrawSchedulerView(ImConfig &cfg) {
|
|||
|
||||
static void DrawGPRs(ImConfig &config, ImControl &control, const MIPSDebugInterface *mipsDebug, const ImSnapshotState &prev) {
|
||||
ImGui::SetNextWindowSize(ImVec2(320, 600), ImGuiCond_FirstUseEver);
|
||||
if (!ImGui::Begin("MIPS GPRs", &config.gprOpen)) {
|
||||
if (!ImGui::Begin("GPRs", &config.gprOpen)) {
|
||||
ImGui::End();
|
||||
return;
|
||||
}
|
||||
|
@ -201,7 +201,7 @@ static void DrawGPRs(ImConfig &config, ImControl &control, const MIPSDebugInterf
|
|||
|
||||
static void DrawFPRs(ImConfig &config, ImControl &control, const MIPSDebugInterface *mipsDebug, const ImSnapshotState &prev) {
|
||||
ImGui::SetNextWindowSize(ImVec2(320, 600), ImGuiCond_FirstUseEver);
|
||||
if (!ImGui::Begin("MIPS FPRs", &config.fprOpen)) {
|
||||
if (!ImGui::Begin("FPRs", &config.fprOpen)) {
|
||||
ImGui::End();
|
||||
return;
|
||||
}
|
||||
|
@ -253,7 +253,7 @@ static void DrawFPRs(ImConfig &config, ImControl &control, const MIPSDebugInterf
|
|||
|
||||
static void DrawVFPU(ImConfig &config, ImControl &control, const MIPSDebugInterface *mipsDebug, const ImSnapshotState &prev) {
|
||||
ImGui::SetNextWindowSize(ImVec2(320, 600), ImGuiCond_FirstUseEver);
|
||||
if (!ImGui::Begin("MIPS VFPU regs", &config.vfpuOpen)) {
|
||||
if (!ImGui::Begin("VFPU", &config.vfpuOpen)) {
|
||||
ImGui::End();
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue