Model3 config file issue ?
-
Hello Recalbox team. Thanks again for this amazing box.
I think there is a mismatch in the way ConfigGen analyses the Model 3 configuration file ConfigModel3.ini
Typically, the supermodelGenerator.py script is looking for a key that does not exist in the config file: multi-threadingHope this helps...
-
Answering my own question:
According to the source files on gitlab, it seems the ConfigModel3.ini config file format changed, and now has a new set of entries, that matches what configgen expects.
I am not sure if it's a bug or if it's related to the recalbox upgrade process which does not erase older config files ?
-
Also, I think there is a typo in the supermodelGenerator.py python script, for the multi-threading parameter.
There is a missing "-" character for the "no-treads" elif section.if ThreadStatut == 1: Thread.append("-no-gpu-thread") elif ThreadStatut == 2: Thread.append("no-threads") else: Thread.append("-gpu-multi-threaded")
-
and choice 1 & 2 are inverted vs the inline help of ConfigModel3.ini
-
Also, this line:
if QuadRendering == "1"
should be
if QuadRendering == 1