Skip to content

Commit df36de9

Browse files
committed
column count set correctly for classic format
1 parent db0b1f2 commit df36de9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Scenes/ReadData.gd

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,10 @@ func read_clm(buffer):
203203
oDataClm.cubes[entry][cubeNumber] = buffer.get_u16() # 8-23
204204

205205
func new_clm():
206-
oDataClm.column_count = 8192
206+
if oCurrentFormat.selected == Constants.ClassicFormat:
207+
oDataClm.column_count = 2048
208+
else:
209+
oDataClm.column_count = 8192
207210
oDataClm.clear_all_column_data()
208211

209212
for entry in oDataClm.column_count:

0 commit comments

Comments
 (0)