diff --git a/README.md b/README.md index ad0e323..df6ce52 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ Add `sudo` to the install command if necessary. -The default installation path is `C:\Program Files\mkpsxiso\bin` on Windows or `/usr/local/bin` on Linux. You can change it to any directory by passing `--install-prefix` to the first command. +The default installation path is `C:\Program Files\mkpsxiso` on Windows or `/usr/local/bin` on Linux. You can change it to any directory by passing `--install-prefix` to the first command. ## Issues diff --git a/src/dumpsxiso/cue.cpp b/src/dumpsxiso/cue.cpp index caa5c38..6997d57 100644 --- a/src/dumpsxiso/cue.cpp +++ b/src/dumpsxiso/cue.cpp @@ -29,7 +29,7 @@ CueFile parseCueFile(std::filesystem::path& inputFile) { size_t lastQuote = line.rfind("\""); filePath = inputFile.parent_path() / line.substr(firstQuote + 1, lastQuote - firstQuote - 1); if (int64_t sectors = GetSize(filePath) / CD_SECTOR_SIZE; sectors < 1) { - printf("Error: Failed to get the file size for \"%s\"\n", filePath.filename().c_str()); + printf("Error: Failed to get the file size for \"%s\"\n", filePath.filename().u8string().c_str()); exit(EXIT_FAILURE); } else {