Commit 7a22686

Nick Faro committed on
Clamp table jumps to 0-32
commit 7a2268628c63befd9cc72d1527506d716740ed54 parent 0806385
2 changed files +3−3
Modifiedcodegen.pas +1−1
@@ -343,7 +343,7 @@ begin
343 if Last and (Cell.Volume = 0) then 343 if Last and (Cell.Volume = 0) then
344 SL.Add(IntToStr(1)) // Automatically insert jump back to row 1 if last cell 344 SL.Add(IntToStr(1)) // Automatically insert jump back to row 1 if last cell
345 else 345 else
346 SL.Add(IntToStr(Cell.Volume)); 346 SL.Add(IntToStr(EnsureRange(Cell.Volume, 0, 32)));
347 347
348 SL.Add('$' + EffectCodeToStr(Cell.EffectCode, Cell.EffectParams)); 348 SL.Add('$' + EffectCodeToStr(Cell.EffectCode, Cell.EffectParams));
349 349
Modifiedtracker.lfm +2−2
@@ -1,7 +1,7 @@
1 object frmTracker: TfrmTracker 1 object frmTracker: TfrmTracker
2 Left = 926 2 Left = 502
3 Height = 857 3 Height = 857
4 Top = 196 4 Top = 100
5 Width = 1318 5 Width = 1318
6 AllowDropFiles = True 6 AllowDropFiles = True
7 Caption = 'hUGETracker' 7 Caption = 'hUGETracker'