소스 검색

Use verbose flag with CLI

Colin Powell 3 년 전
부모
커밋
fe52dfeb9a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      games/models.py

+ 1 - 1
games/models.py

@@ -266,5 +266,5 @@ class Game(BaseModel):
         rom_file = quote(self.rom_file.path)
         emulator = self.game_system.defaults.get("emulator", None)
         if emulator == "PCSX2":
-            cmd = f"{emulator} --console --fullscreen --nogui {rom_file}"
+            cmd = f"{emulator} --console --fullscreen --nogui {rom_file} -v"
         return cmd