Golf level selector

This commit is contained in:
Pyrex 2022-12-22 18:52:54 -08:00
parent 137a390b65
commit 9fbccee378

View File

@ -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