diff options
author | metamuffin <metamuffin@disroot.org> | 2024-07-23 01:50:51 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-07-23 01:50:51 +0200 |
commit | 4899cad95fd2abe99d2057fb9c5425c18d8f2bcb (patch) | |
tree | be856ee1067aa63e77f165f7ccf49bec9901ab69 | |
parent | e00fa55e4984377956a50ad980c53b43715bea6c (diff) | |
download | hurrycurry-4899cad95fd2abe99d2057fb9c5425c18d8f2bcb.tar hurrycurry-4899cad95fd2abe99d2057fb9c5425c18d8f2bcb.tar.bz2 hurrycurry-4899cad95fd2abe99d2057fb9c5425c18d8f2bcb.tar.zst |
pc: fix crash
-rw-r--r-- | pixel-client/src/menu.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pixel-client/src/menu.rs b/pixel-client/src/menu.rs index 0fc0e880..22a0244a 100644 --- a/pixel-client/src/menu.rs +++ b/pixel-client/src/menu.rs @@ -31,7 +31,7 @@ impl Menu { .map(String::from), layout, ); - static BUCKETS: &[&[usize]] = &[&[], &[0, 0, 0, 0, 1, 2], &[3, 4, 5], &[6, 7, 8]]; + static BUCKETS: &[&[usize]] = &[&[], &[0, 0, 0, 0, 1, 2], &[3, 4, 5], &[6, 7]]; for x in -10..11 { for y in -10..11 { |