@myst
Well done! it solved all my problems in the last Recalbox RC1! No more ES crashs!
Good Job!
Thanks again for your hard work! (and thanks for the Amstrad CPC theme! it's perfect! )
Best posts made by Goo Gui
- 
    RE: [Recalbox 9] Theme Next Pixelposted in Themes & Interface
 - 
    RE: Recalbox 6 RC1 disponible !posted in Recalbox Général
Hello,
j'ai fait une petite analyse de mon probleme de stick sur amiga.
j'ai l'impression que les fichiers amiberry gerant la conf des joysticks ont quelques soucis :
exemple avec un "usb gamepad.cfg"- 
les valeurs des directions sont avec des doubles quotes :
input_l_x_minus_axis = ""-0""
input_l_x_plus_axis = ""+0""
input_l_y_minus_axis = ""-1""
input_l_y_plus_axis = ""+1""
->
input_l_x_minus_axis = "-0"
input_l_x_plus_axis = "+0"
input_l_y_minus_axis = "-1"
input_l_y_plus_axis = "+1" - 
on encode des valeurs en doublon :
input_down_btn = "+1"
input_right_btn = "+0"
input_left_btn = "-0"
input_up_btn = "-1"
->
input_down_btn = "999"
input_right_btn = "999"
input_left_btn = "999"
input_up_btn = "999" 
Avec cette config, ca marche.
Bonne journée,
 -