Fix 8.3 conversion derp

This commit is contained in:
wheremyfoodat 2023-07-17 03:11:21 +03:00
parent f08fe10862
commit 22bfb092b8

View file

@ -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;
}