We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 246a6e8 commit 1ecfeecCopy full SHA for 1ecfeec
src/gui/widgets/registers.cc
@@ -94,11 +94,11 @@ void PCSX::Widgets::Registers::draw(PCSX::GUI* gui, PCSX::psxRegisters* register
94
auto sxy0 = registers->CP2D.n.sxy0;
95
ImGui::Text("sxy0: {%i, %i}", sxy0.x, sxy0.y);
96
auto sxy1 = registers->CP2D.n.sxy1;
97
- ImGui::Text("sxy0: {%i, %i}", sxy1.x, sxy1.y);
+ ImGui::Text("sxy1: {%i, %i}", sxy1.x, sxy1.y);
98
auto sxy2 = registers->CP2D.n.sxy2;
99
- ImGui::Text("sxy0: {%i, %i}", sxy2.x, sxy2.y);
+ ImGui::Text("sxy2: {%i, %i}", sxy2.x, sxy2.y);
100
auto sxyp = registers->CP2D.n.sxyp;
101
- ImGui::Text("sxy0: {%i, %i}", sxyp.x, sxyp.y);
+ ImGui::Text("sxyp: {%i, %i}", sxyp.x, sxyp.y);
102
auto sz0 = registers->CP2D.n.sz0;
103
ImGui::Text("sz0 : {%i, %i}", sz0.z, sz0.unused);
104
auto sz1 = registers->CP2D.n.sz1;
0 commit comments