diff --git a/tools/platforms/WindowsPlatform.hx b/tools/platforms/WindowsPlatform.hx index 7a47a9f9a4..841d8bb868 100644 --- a/tools/platforms/WindowsPlatform.hx +++ b/tools/platforms/WindowsPlatform.hx @@ -938,6 +938,11 @@ class WindowsPlatform extends PlatformTarget arguments = arguments.concat(["-livereload"]); System.runCommand(applicationDirectory, Path.withoutDirectory(executablePath), arguments); } + else + { + arguments = [Path.withoutDirectory(executablePath)].concat(arguments.concat(["-livereload"])); + System.runCommand(applicationDirectory, "wine", arguments); + } } public override function update():Void