Fix issues with the Steam flatpak runner
This commit is contained in:
parent
66fa859183
commit
e3038fc4d5
@ -62,9 +62,8 @@ def launch(game: str, profile: str):
|
|||||||
|
|
||||||
# Launch the game
|
# Launch the game
|
||||||
if mounts_ok:
|
if mounts_ok:
|
||||||
# runner.run()
|
runner.run(game)
|
||||||
# game.wait()
|
game.wait()
|
||||||
print(f"Stub runner: Would use {runner.__class__.__name__}")
|
|
||||||
|
|
||||||
# Unmount
|
# Unmount
|
||||||
for mount in mounts:
|
for mount in mounts:
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
import abc
|
import abc
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
|
from lmm.cmd import run_cmd_nonblocking
|
||||||
from lmm.runners.runner import Runner
|
from lmm.runners.runner import Runner
|
||||||
from lmm.games.game import Game
|
from lmm.games.game import Game, ProtonGame
|
||||||
|
|
||||||
|
|
||||||
class SteamRuntime(abc.ABC):
|
class SteamRuntime(abc.ABC):
|
||||||
|
Loading…
Reference in New Issue
Block a user