BizHawkClient: Avoid error launching BizHawkClient via Launcher CLI (#3554)

* Core, BizHawkClient: Support launching BizHawkClient via Launcher command line

* Revert changes to LauncherComponents.py
This commit is contained in:
Remy Jette
2024-09-18 11:42:22 -07:00
committed by GitHub
parent db5d9fbf70
commit 0d35cd4679
3 changed files with 5 additions and 4 deletions

View File

@@ -1,9 +1,10 @@
from __future__ import annotations
import sys
import ModuleUpdate
ModuleUpdate.update()
from worlds._bizhawk.context import launch
if __name__ == "__main__":
launch()
launch(*sys.argv[1:])