Skip to content

Instantly share code, notes, and snippets.

@substring
Created August 8, 2016 15:01
Show Gist options
  • Save substring/12120fba77fef20b3cd7cae89793ed48 to your computer and use it in GitHub Desktop.
Save substring/12120fba77fef20b3cd7cae89793ed48 to your computer and use it in GitHub Desktop.
customCfg = "/recalbox/share/system/configs/retroarch/{}.cfg".format(system.name)
if os.path.isfile(customCfg):
commandArray = [recalboxFiles.retroarchBin, "-L", retroarchCore, "--config", system.config['configfile'], "--append", customCfg, rom]
else:
commandArray = [recalboxFiles.retroarchBin, "-L", retroarchCore, "--config", system.config['configfile'], rom]
return Command.Command(videomode=system.config['videomode'], array=commandArray)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment