do not produce stray comma on the end of showtapes
This commit is contained in:
parent
700c9b5fc0
commit
92d32ec93d
1 changed files with 1 additions and 1 deletions
|
@ -460,7 +460,7 @@ func save_data() -> String:
|
||||||
total_frame_index += 1
|
total_frame_index += 1
|
||||||
fstring = ("%01X" % f_quartet) + fstring
|
fstring = ("%01X" % f_quartet) + fstring
|
||||||
write_out += fstring + ","
|
write_out += fstring + ","
|
||||||
return write_out
|
return write_out.trim_suffix(",")
|
||||||
|
|
||||||
func plot_data(data: String):
|
func plot_data(data: String):
|
||||||
start_recording.emit()
|
start_recording.emit()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue