Skip to content

Commit f515d3a

Browse files
committed
fix(binary-editor): lay CRE sound slots out 20 per column
The 100 sound-set strref slots used 6 columns (17 per column); switch to 5 columns so each holds an even 20 (column-major).
1 parent e42643d commit f515d3a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

binary/src/cre/layout-schema.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,8 @@ export const creLayout: FormatLayout = formatLayoutSchema.parse({
655655
panels: [
656656
{
657657
title: "Sound Slots",
658-
blocks: [{ kind: "grid", columns: 6, items: slotKeys("soundSlots", "sound", 100) }],
658+
// 5 columns x 20 rows (column-major): 100 sound strref slots, 20 per column.
659+
blocks: [{ kind: "grid", columns: 5, items: slotKeys("soundSlots", "sound", 100) }],
659660
},
660661
],
661662
},

0 commit comments

Comments
 (0)