mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-22 21:14:00 +00:00
The basename default should be the filename itself
This commit is contained in:
parent
03b9e7f413
commit
d13cca3362
1 changed files with 1 additions and 6 deletions
|
@ -91,7 +91,7 @@ void ExtractBasename(const char *filename, char *buf, size_t bufSz) {
|
|||
size_t len = strlen(filename);
|
||||
const char *end = filename + len;
|
||||
const char *ext = end;
|
||||
const char *base = NULL;
|
||||
const char *base = filename;
|
||||
while(--end != filename && !base) {
|
||||
if(*end == '.') {
|
||||
ext = end;
|
||||
|
@ -100,11 +100,6 @@ void ExtractBasename(const char *filename, char *buf, size_t bufSz) {
|
|||
}
|
||||
}
|
||||
|
||||
if(!base) {
|
||||
fprintf(stderr, "Filename (%s) has no extension, we don't know how to deal with it!\n", filename);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
size_t numChars = ext - base + 1;
|
||||
size_t toCopy = ::std::min(numChars, bufSz);
|
||||
memcpy(buf, base, toCopy);
|
||||
|
|
Loading…
Reference in a new issue