From 23cb9c57938fec2542ee4f897317ddd8d42caa3d Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Mon, 21 Dec 2020 22:24:58 -0600 Subject: [PATCH] removed dummy data --- day20.onyx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/day20.onyx b/day20.onyx index 8c466e9..547c0bc 100644 --- a/day20.onyx +++ b/day20.onyx @@ -183,14 +183,6 @@ apply_orientation :: proc (t: ^Tile, ori: TO) { t.orientation = ori; } -dummy_data := u32.[ - 0, 1, 0, 0, 0, - 0, 1, 0, 1, 0, - 1, 1, 1, 1, 1, - 0, 1, 0, 0, 0, - 0, 1, 0, 0, 0, -]; - index_square_with_orientation :: proc (data: ^$T, ori: TO, size: i32, x: i32, y: i32) -> ^T { switch ori { case TO.N do return ^data[x + y * size]; -- 2.25.1