diff --git a/switch1_on_tile.txt b/switch1_on_tile.txt index 89974f2..a214c74 100644 --- a/switch1_on_tile.txt +++ b/switch1_on_tile.txt @@ -1,5 +1,5 @@ xSWITCH_SWITCH -tSWITCH1_HIGHLIGHT +tTILE1 BG ---------- diff --git a/switcher.c b/switcher.c index 9f64668..51bb399 100644 --- a/switcher.c +++ b/switcher.c @@ -33,10 +33,8 @@ enum palette { FLAG_STEM, FLAG_FLAG, SWITCH_SWITCH, - SWITCH1_HIGHLIGHT, TILE1, STAR_STAR, - ERROR, }; static enum palette playfield[PLAYFIELD_SIDE * PLAYFIELD_SIDE]; @@ -454,10 +452,8 @@ int main(int argc, char *argv[]) { [FLAG_STEM] = make_color(0, 0, 0), [FLAG_FLAG] = make_color(255, 0, 0), [SWITCH_SWITCH] = make_color(200, 64, 0), - [SWITCH1_HIGHLIGHT] = make_color(0, 255, 0), [TILE1] = make_color(0, 255, 0), [STAR_STAR] = make_color(255, 255, 0), - [ERROR] = make_color(255, 0, 255), }; long fps_cap = 100;