mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-14 11:39:17 +01:00
9.0.4
This commit is contained in:
@@ -28,7 +28,7 @@ extension GameInstanceWatcher on GameInstance {
|
||||
}
|
||||
});
|
||||
|
||||
observerPid = await startBackgroundProcess(
|
||||
final process = await startProcess(
|
||||
executable: _executable,
|
||||
args: [
|
||||
hostingController.uuid,
|
||||
@@ -36,8 +36,10 @@ extension GameInstanceWatcher on GameInstance {
|
||||
launcherPid?.toString() ?? "-1",
|
||||
eacPid?.toString() ?? "-1",
|
||||
hosting.toString()
|
||||
]
|
||||
],
|
||||
|
||||
);
|
||||
observerPid = process.pid;
|
||||
}
|
||||
|
||||
bool get _nestedHosting {
|
||||
|
||||
@@ -11,7 +11,7 @@ import 'package:reboot_launcher/src/util/translations.dart';
|
||||
final UpdateController _updateController = Get.find<UpdateController>();
|
||||
Future<void> downloadCriticalDllInteractive(String filePath) async {
|
||||
try {
|
||||
final fileName = path.basename(filePath);
|
||||
final fileName = path.basename(filePath).toLowerCase();
|
||||
if (fileName == "reboot.dll") {
|
||||
_updateController.update(true);
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user