mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-04 07:41:58 +00:00
Fix a recent regression reported in bug #1937042: "FEEBLE: Capitalization
variations when searching for files" svn-id: r31445
This commit is contained in:
parent
732774fd8d
commit
04ff7cb1c1
@ -172,7 +172,7 @@ static FILE *fopenNoCase(const String &filename, const String &directory, const
|
|||||||
//
|
//
|
||||||
if (!file) {
|
if (!file) {
|
||||||
fileBuf.toUppercase();
|
fileBuf.toUppercase();
|
||||||
pathBuf += fileBuf;
|
pathBuf = dirBuf + fileBuf;
|
||||||
file = fopen(pathBuf.c_str(), mode);
|
file = fopen(pathBuf.c_str(), mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -181,7 +181,7 @@ static FILE *fopenNoCase(const String &filename, const String &directory, const
|
|||||||
//
|
//
|
||||||
if (!file) {
|
if (!file) {
|
||||||
fileBuf.toLowercase();
|
fileBuf.toLowercase();
|
||||||
pathBuf += fileBuf;
|
pathBuf = dirBuf + fileBuf;
|
||||||
file = fopen(pathBuf.c_str(), mode);
|
file = fopen(pathBuf.c_str(), mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -191,7 +191,7 @@ static FILE *fopenNoCase(const String &filename, const String &directory, const
|
|||||||
if (!file) {
|
if (!file) {
|
||||||
fileBuf.toLowercase();
|
fileBuf.toLowercase();
|
||||||
fileBuf.setChar(toupper(fileBuf[0]),0);
|
fileBuf.setChar(toupper(fileBuf[0]),0);
|
||||||
pathBuf += fileBuf;
|
pathBuf = dirBuf + fileBuf;
|
||||||
file = fopen(pathBuf.c_str(), mode);
|
file = fopen(pathBuf.c_str(), mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user