From 37afc3402979912e69bf404f011b71f93d6558c3 Mon Sep 17 00:00:00 2001 From: Lojemiru <33508026+Lojemiru@users.noreply.github.com> Date: Sun, 1 Aug 2021 17:49:20 -0500 Subject: [PATCH] Fixes #88 --- objects/oOptionSeed.object.gmx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/oOptionSeed.object.gmx b/objects/oOptionSeed.object.gmx index daca741..9068354 100644 --- a/objects/oOptionSeed.object.gmx +++ b/objects/oOptionSeed.object.gmx @@ -70,7 +70,7 @@ draw_set_color(c_black); draw_text(x + 1, y - 3, label); //draw_text(x + textoffset + 1, y - 3, optext); var voff = 0; -for (var i = 0; i < string_length(optext) - 1; i++) { +for (var i = 0; i < string_length(optext); i++) { var str = string_char_at(optext, i + 1); draw_text(x + textoffset + (i * 7) - (4 * voff) + 1, y - 3, str); if (str == "1") voff += 1; // special case to make 1 not be super awkward