Skip to content

Commit

Permalink
Fix Windows launcher doesn't like spaces in paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
metaphore committed Nov 2, 2023
1 parent 8a548e5 commit 9580054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distribution/files/launcher_win_no_cmd.vbs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
scriptDir = CreateObject("Scripting.FileSystemObject").GetParentFolderName(WScript.ScriptFullName)
strArgs = "javaw -Xms64m -Xmx2048m -jar " + scriptDir + "/gdx-texture-packer.jar "
strArgs = "javaw -Xms64m -Xmx2048m -jar """ + scriptDir + "/gdx-texture-packer.jar"" "
For Each arg In Wscript.Arguments
strArgs = strArgs + arg
Next
Expand Down

0 comments on commit 9580054

Please sign in to comment.