Coverage for lutris.runners.pcsxr : 50%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
"""PlayStation emulator"""
"option": "iso", "type": "file", "label": "iso" }]
# Lutris provided emulator pcsxr_path = os.path.join(settings.RUNNER_DIR, 'pcsxr/pcsxr') if os.path.exists(pcsxr_path): return pcsxr_path # System wide available emulator candidates = ('pcsx', 'pcsxr') for candidate in candidates: executable = find_executable(candidate) if executable: return executable
return bool(self.get_executable())
"""Run Playstation game""" iso = self.settings["game"].get("iso") executable = self.get_executable() command = [executable, " -nogui -cdfile \"" + iso + "\" -runcd"] return {'command': command} |