Skip to content

Commit

Permalink
Merge pull request #9 from fhoedemakers/bugfix
Browse files Browse the repository at this point in the history
Bugfix in file handling
  • Loading branch information
fhoedemakers authored Dec 5, 2024
2 parents e25a33a + e49eee4 commit d81382d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ Download and extract the zipfile PicoSystemInfoNesLoader.zip to a folder of choi
Tested on Windows 11 x64.

## v0.8-alpha

Fixes:

- Fix filename handling in ProcessStartInfo arguments. [#8](https://github.com/fhoedemakers/PicoSystemInfoNesLoader/issues/8)

Features:

- none

## v0.7-alpha

Fixes:
Expand Down
2 changes: 1 addition & 1 deletion PicoNesLoader/PicoLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ public void PicoFlash(string filename, string binaryType, long address, IProgres
StartInfo = new ProcessStartInfo
{
FileName = picoTool,
Arguments = $"load {filename} -t {binaryType}{offsetArg}",
Arguments = $"load \"{filename}\" -t {binaryType}{offsetArg}",
UseShellExecute = false,
RedirectStandardOutput = true,
CreateNoWindow = true,
Expand Down

0 comments on commit d81382d

Please sign in to comment.