From 92d32ec93dbc784cfcb9ee72af913c0d2f9d7b1b Mon Sep 17 00:00:00 2001 From: Persephone Bubblegum-Holiday Date: Sun, 10 Aug 2025 10:24:42 -0700 Subject: [PATCH] do not produce stray comma on the end of showtapes --- Scripts/EditorScreen.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/EditorScreen.gd b/Scripts/EditorScreen.gd index dabefa5..2786670 100644 --- a/Scripts/EditorScreen.gd +++ b/Scripts/EditorScreen.gd @@ -460,7 +460,7 @@ func save_data() -> String: total_frame_index += 1 fstring = ("%01X" % f_quartet) + fstring write_out += fstring + "," - return write_out + return write_out.trim_suffix(",") func plot_data(data: String): start_recording.emit()