You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running v1.6.2 on Linux, I discovered that PSXPackager fails with an "access denied" error if it lacks write permission on the input files. I could understand the problem if it lacked write permissions on the output directory, but it should be able to function without write permissions on the inputs.
Running v1.6.2 on Linux, I discovered that PSXPackager fails with an "access denied" error if it lacks write permission on the input files. I could understand the problem if it lacked write permissions on the output directory, but it should be able to function without write permissions on the inputs.
Steps:
chmod -w game.cue game.bin
./psxpackager -i game.cue -o . -f "%MAINTITLE% [%MAINGAMEID%] (%REGION%)"
Expected Output:
PSXPackager runs without error.
Actual Results:
This access denied error is fixed by executing
chmod +w game.cue game.bin
.The text was updated successfully, but these errors were encountered: