diff --git a/demos/clicker_game.cpp b/demos/clicker_game.cpp index 7f41742..17ffbb1 100644 --- a/demos/clicker_game.cpp +++ b/demos/clicker_game.cpp @@ -77,7 +77,7 @@ struct ClickerUI { "[_|_ |_|_|_]" "[_|_ |_|_|_]" "[_|_ |_|_|_]" - "[(30,30)a1|=(30,30)a2|a3|=a4|a5]"); + "[a1|a2|a3|a4|a5]"); } void init() { @@ -91,9 +91,8 @@ struct ClickerUI { for(auto& [name, cell] : $gui.cells()) { auto id = $gui.entity(name); if(name != "clicker") { - $gui.set(id, {0, {255, 0, 0, 255}}); $gui.set(id, {}); - // $gui.set(id, { "clicker_treat_bone" }); + $gui.set(id, { "clicker_treat_bone" }); $gui.set(id, { [&](auto, auto) { handle_button(Event::A_BUTTON); } });