diff --git a/docs/debugger.html b/docs/debugger.html
index 7f4c108bc..bc0329c0f 100644
--- a/docs/debugger.html
+++ b/docs/debugger.html
@@ -1147,11 +1147,11 @@ as illustrated:
The indicators are as follows (note that all these are read-only):
-- Frame Cycle: The number of CPU cycles that have been executed this frame since
+
- Frame Cycls: The number of CPU cycles that have been executed this frame since
VSYNC was cleared at scanline 0.
-- WSync Cycle: The number of CPU cycles that have been skipped by WSYNC this frame since
+
- WSync Cycls: The number of CPU cycles that have been skipped by WSYNC this frame since
VSYNC was cleared at scanline 0.
-- Timer Cycle: The number of CPU cycles (approximately) that have been used by timer read loops since
+
- Timer Cycls: The number of CPU cycles (approximately) that have been used by timer read loops since
VSYNC was cleared at scanline 0.
- Total: The total number of CPU cycles since this ROM was loaded or reset.
- Delta: The number of CPU cycles that have been executed since the last debugger
diff --git a/src/common/Version.hxx b/src/common/Version.hxx
index c6c81ab47..a0eb84a14 100644
--- a/src/common/Version.hxx
+++ b/src/common/Version.hxx
@@ -19,6 +19,6 @@
#define VERSION_HXX
#define STELLA_VERSION "6.4"
-#define STELLA_BUILD "6237"
+#define STELLA_BUILD "6238"
#endif
diff --git a/src/debugger/gui/TiaInfoWidget.cxx b/src/debugger/gui/TiaInfoWidget.cxx
index 3a0a3b27f..08d4b2008 100644
--- a/src/debugger/gui/TiaInfoWidget.cxx
+++ b/src/debugger/gui/TiaInfoWidget.cxx
@@ -43,7 +43,7 @@ TiaInfoWidget::TiaInfoWidget(GuiObject* boss, const GUI::Font& lfont,
+ EditTextWidget::calcWidth(lfont) * 3 <= max_w;
const int lineHeight = lfont.getLineHeight();
int xpos = x, ypos = y + VBORDER;
- int lwidth = lfont.getStringWidth(longstr ? "Frame Cycle" : "F. Cycle");
+ int lwidth = lfont.getStringWidth(longstr ? "Frame Cycls" : "F. Cycls");
int lwidth8 = lwidth - lfont.getMaxCharWidth() * 3;
int lwidthR = lfont.getStringWidth(longstr ? "Frame Cnt." : "Frame ");
int fwidth = EditTextWidget::calcWidth(lfont, 5);
@@ -58,19 +58,19 @@ TiaInfoWidget::TiaInfoWidget(GuiObject* boss, const GUI::Font& lfont,
// Left column
// Left: Frame Cycle
xpos = x;
- new StaticTextWidget(boss, lfont, xpos, ypos + 1, longstr ? "Frame Cycle" : "F. Cycle");
+ new StaticTextWidget(boss, lfont, xpos, ypos + 1, longstr ? "Frame Cycls" : "F. Cycls");
myFrameCycles = new EditTextWidget(boss, nfont, xpos + lwidth, ypos - 1, fwidth, lineHeight);
myFrameCycles->setEditable(false, true);
// Left: WSync Cycles
ypos += lineHeight + VGAP;
- new StaticTextWidget(boss, lfont, xpos, ypos + 1, longstr ? "WSync Cycle" : "WSync C.");
+ new StaticTextWidget(boss, lfont, xpos, ypos + 1, longstr ? "WSync Cycls" : "WSync C.");
myWSyncCylces = new EditTextWidget(boss, nfont, xpos + lwidth, ypos - 1, fwidth, lineHeight);
myWSyncCylces->setEditable(false, true);
// Left: Timer Cycles
ypos += lineHeight + VGAP;
- new StaticTextWidget(boss, lfont, xpos, ypos + 1, longstr ? "Timer Cycle" : "Timer C.");
+ new StaticTextWidget(boss, lfont, xpos, ypos + 1, longstr ? "Timer Cycls" : "Timer C.");
myTimerCylces = new EditTextWidget(boss, nfont, xpos + lwidth, ypos - 1, fwidth, lineHeight);
myTimerCylces->setEditable(false, true);