Skip to content

Commit d7694fe

Browse files
committed
Fix typo
1 parent a1b9aaa commit d7694fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

platforms/shared/desktop/gui_debug_cdrom.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,12 +183,12 @@ void gui_debug_window_arcade_card(void)
183183
ImGui::Text("$%08X", port->base);
184184
ImGui::TextColored(violet, "OFFSET "); ImGui::SameLine();
185185
ImGui::Text("$%04X", port->offset);
186-
ImGui::TextColored(violet, "INCREMENT. "); ImGui::SameLine();
186+
ImGui::TextColored(violet, "INCREMENT "); ImGui::SameLine();
187187
ImGui::Text("$%04X", port->increment);
188-
ImGui::TextColored(violet, "CONTROL. "); ImGui::SameLine();
188+
ImGui::TextColored(violet, "CONTROL "); ImGui::SameLine();
189189
ImGui::Text("$%02X (" BYTE_TO_BINARY_PATTERN_SPACED ")", port->control, BYTE_TO_BINARY(port->control));
190190

191-
ImGui::TextColored(violet, "ADD OFFSET. "); ImGui::SameLine();
191+
ImGui::TextColored(violet, "ADD OFFSET "); ImGui::SameLine();
192192
ImGui::TextColored(port->add_offset ? green : gray, "%s", port->add_offset ? "ON" : "OFF");
193193
ImGui::TextColored(violet, "AUTO INCREMENT"); ImGui::SameLine();
194194
ImGui::TextColored(port->auto_increment ? green : gray, "%s", port->auto_increment ? "ON" : "OFF");

0 commit comments

Comments
 (0)