Skip to content

Commit bea2741

Browse files
committed
fix: spaces in cartridge names
1 parent 3f0f3a9 commit bea2741

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

P8Coder/CoderForm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ private void runCart()
320320
if (pico8Process == null)
321321
{
322322
ProcessStartInfo info = new ProcessStartInfo();
323-
info.Arguments = "-run " + currentProject.CartFilename;
323+
info.Arguments = "-run \"" + currentProject.CartFilename + "\"";
324324
info.FileName = Settings.Pico8exe;
325325
info.UseShellExecute = false;
326326
info.RedirectStandardOutput = true;

0 commit comments

Comments
 (0)