|
@@ -256,7 +256,7 @@ class Game(BaseModel):
|
|
if not self.rom_file:
|
|
if not self.rom_file:
|
|
return ""
|
|
return ""
|
|
rom_file = quote(self.rom_file.path)
|
|
rom_file = quote(self.rom_file.path)
|
|
- return f"retroarch -L {self.retroarch_core_path} {rom_file}"
|
|
|
|
|
|
+ return f"retroarch -L {self.retroarch_core_path} {rom_file} -v"
|
|
|
|
|
|
def cmd(self, platform="linux"):
|
|
def cmd(self, platform="linux"):
|
|
cmd = None
|
|
cmd = None
|
|
@@ -266,5 +266,5 @@ class Game(BaseModel):
|
|
rom_file = quote(self.rom_file.path)
|
|
rom_file = quote(self.rom_file.path)
|
|
emulator = self.game_system.defaults.get("emulator", None)
|
|
emulator = self.game_system.defaults.get("emulator", None)
|
|
if emulator == "PCSX2":
|
|
if emulator == "PCSX2":
|
|
- cmd = f"{emulator} --console --fullscreen --nogui {rom_file} -v"
|
|
|
|
|
|
+ cmd = f"{emulator} --console --fullscreen --nogui {rom_file}"
|
|
return cmd
|
|
return cmd
|