diff --git a/chameleonic.p8 b/chameleonic.p8 index 33bbc49..f6b8c92 100644 --- a/chameleonic.p8 +++ b/chameleonic.p8 @@ -192,11 +192,7 @@ end title={} add(modules,title) -function title:init() -end - -blinkcol = 10 - +blinkcol=10 function title:draw() cls(0) -- this is right for 72x32 @@ -209,29 +205,18 @@ function title:draw() print(lvlstr,51,90,blinkcol) end -start_level = 0 +start_level=0 max_level=15 function title:update() - if time()*4\1%2==0 then - blinkcol=10 - else - blinkcol=9 - end + blinkcol=9 + if (time()*4\1%2==0) blinkcol=10 - if btnp(0) then - start_level -= 1 - if (start_level<0) start_level=max_level - end - if btnp(1) then - start_level += 1 - if (start_level>max_level) start_level=0 - end - if btnp(4) or btnp(5) then - modules=real_modules - _init() - music(0) - end + if (btnp"0") start_level-=1 + if (btnp"1") start_level+=1 + start_level%=max_level + + if (btnp"4" or btnp"5") modules=real_modules _init() music(0) end -->8