From: Brendan Hansen Date: Tue, 22 Dec 2020 04:24:58 +0000 (-0600) Subject: removed dummy data X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=23cb9c57938fec2542ee4f897317ddd8d42caa3d;p=onyx-aoc-2020.git removed dummy data --- 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];