can I initialize a debian application with recalbox?
I want to create a counter
to find out how many times the player presses select button
I created a debian application that does this for me.
if not possible
is there a way to create a script that does this function?
example
if Key = Button_Select
{
ini.LoadFile ("counter.ini");
ini.GetValue ("counter", "pulses", NULL);
ini.SetValue ("counter", "pulses", "NULL + 1");
}
File counter.ini
[COUNTER]
Pulses=12