Skip to content

Commit

Permalink
column count set correctly for classic format
Browse files Browse the repository at this point in the history
  • Loading branch information
rainlizard committed Jul 29, 2024
1 parent db0b1f2 commit df36de9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Scenes/ReadData.gd
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,10 @@ func read_clm(buffer):
oDataClm.cubes[entry][cubeNumber] = buffer.get_u16() # 8-23

func new_clm():
oDataClm.column_count = 8192
if oCurrentFormat.selected == Constants.ClassicFormat:
oDataClm.column_count = 2048
else:
oDataClm.column_count = 8192
oDataClm.clear_all_column_data()

for entry in oDataClm.column_count:
Expand Down

0 comments on commit df36de9

Please sign in to comment.