PicoMiteVGA PETSCII ROBOTS release candidates


Author Message
Bleep
Guru

Joined: 09/01/2022
Location: United Kingdom
Posts: 568
Posted: 06:34pm 13 Dec 2023      

Hi Harm,
Do you use the gun with autorepeat to rapid fire?
If so, could you add this change for the Wii Classic controller code please, so that firing will allow auto repeat, its only the Instr line that changes, the rest is just for context.
 ' Suppress auto-repeat except for movement and firing.
 If last$ = read_input$ Then
   If Not Instr("up,down,left,right,fire-up,fire-down,fire-left,fire-right", last$) Then
     read_input$ = ""
     Exit Function
   EndIf
 Else
   last$ = read_input$
 EndIf


I've also noticed, on the LCD version RC5, if I escape out, none of the statistics are now displayed, the screen appears correctly, but with no values?
Regards, Kevin.