diff options
| author | RibbonCable <ambiguousmachine@gmail.com> | 2022-02-20 12:55:11 -0800 |
|---|---|---|
| committer | RibbonCable <ambiguousmachine@gmail.com> | 2022-02-20 12:55:11 -0800 |
| commit | 4f4a5405a95c47b34e0250e6b0f143e8e5f8dc76 (patch) | |
| tree | 9cfe9651c194db292621e712ee099984a9359aa5 /musicplayer/draw_music.lua | |
| parent | 23acc296abf209ccf2fa15e3641f266b02add71d (diff) | |
Lots of updates to the music player. Other than track titles and final songs, it's p much done. Also made some sprint non-flipped to save on tokens.
Diffstat (limited to 'musicplayer/draw_music.lua')
| -rw-r--r-- | musicplayer/draw_music.lua | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/musicplayer/draw_music.lua b/musicplayer/draw_music.lua index 118d461..36d5328 100644 --- a/musicplayer/draw_music.lua +++ b/musicplayer/draw_music.lua @@ -4,8 +4,6 @@ pal({1,2,131,141,5,6,7,136,9,137,139,12,133,3,140,130}, 1) --don't ask me why, b drawbg() -drawobjs() - menushipscroll += ft for i = 1, 3, 1 do @@ -17,13 +15,16 @@ if t() < 1 then else drawlogo(24,26) end +credits(40,116) ---main screen items -mainmenutext(15,74) -credits(10,108) +if not hideui then + --main screen items + mainmenutext(15,74) ---intro acid transtition -acidcounter+=ft -acidtransition() + --intro acid transtition + acidcounter+=ft + acidtransition() + drawobjs() --only used for acid trans here +end --- print(tracknumber,0,0)
\ No newline at end of file +-- print(autoplay,0,0,7)
\ No newline at end of file |
