mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
ImDebugger: Fix titles of MIPS register views
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user