diff --git a/mkxp.conf.sample b/mkxp.conf.sample index fcb6cef..a99865a 100644 --- a/mkxp.conf.sample +++ b/mkxp.conf.sample @@ -106,6 +106,7 @@ # # pathCache=true + # Add 'rtp1', 'rtp2.zip' and 'game.rgssad' to the # asset search path (multiple allowed) # (default: none) diff --git a/src/filesystem.cpp b/src/filesystem.cpp index 6a731ce..d1dbbf7 100644 --- a/src/filesystem.cpp +++ b/src/filesystem.cpp @@ -664,9 +664,9 @@ struct FileSystemPrivate /* Complete filename via path cache */ bool completeFilenamePC(const char *filename, FileSystem::FileType type, - char *outBuffer, - size_t outN, - const char **foundExt) + char *outBuffer, + size_t outN, + const char **foundExt) { size_t i; char lowCase[512]; @@ -718,9 +718,9 @@ struct FileSystemPrivate * returns false, and 'foundExt' is untouched */ bool completeFileName(const char *filename, FileSystem::FileType type, - char *outBuffer, - size_t outN, - const char **foundExt) + char *outBuffer, + size_t outN, + const char **foundExt) { if (havePathCache) return completeFilenamePC(filename, type, outBuffer, outN, foundExt);