mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-09 15:45:40 +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
|
||||
if (validCharacterCount == filename.size()) {
|
||||
if (validCharacterCount == 8) {
|
||||
filenameTooBig = true;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue