mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-18 03:31:31 +12:00
Fix 8.3 conversion derp
This commit is contained in:
parent
f08fe10862
commit
22bfb092b8
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ Filename83 convertTo83(const std::string& path) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// We already have capped the amount of characters, thus our filename is too big
|
// We already have capped the amount of characters, thus our filename is too big
|
||||||
if (validCharacterCount == filename.size()) {
|
if (validCharacterCount == 8) {
|
||||||
filenameTooBig = true;
|
filenameTooBig = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue