Advanced MAME Launcher - MAME frontend for Kodi
So I have done some more sleuthing with the "TypeError: '<' not supported between instances of 'dict' and 'dict'" error and it would seem that Python3 handles lists/dicts differently than Python2. The machines can now be selected by replacing line 7675 (        for SL_machine in sorted(SL_machine_list):with:
        for SL_machine in sorted(SL_machine_list, key=lambda x: (x['machine'])):

I still have another error prior to launching the rom but the list of machines now displays and I can select the machine I am looking for.

Cheers,
Reply


Messages In This Thread
RE: Advanced MAME Launcher - MAME frontend for Kodi - by Rychem28 - 2020-10-22, 03:41
Logout Mark Read Team Forum Stats Members Help
Advanced MAME Launcher - MAME frontend for Kodi2