I have been trying to write programs using loops to run on my Nintendo DS with DSLua.
Here is the first one. It just cycles through some fruit and puts in in a hypothetical basket.
I then want a drink for my efforts ... a nice banana smoothie
[code]
SCREEN_TOP = 1
SCREEN_BOTTOM = 0
BGTopText = Screen.LoadTextBG()
BGBotText = Screen.LoadTextBG()
Screen.Initialize(SCREEN_TOP, BGTopText)
Screen.Initialize(SCREEN_BOTTOM,...