Fixed "PLAYER" folder bug.

Fixed a bug where the install process would create a folder named
"PLAYER" but then look for a folder named "PLAYERS" instead.
This commit is contained in:
Allen
2016-06-08 16:12:36 -04:00
parent f1d1434020
commit 8d1f897ca4

View File

@@ -283,7 +283,7 @@ int main()
system("mkdir backup");
system("mkdir conf");
system("mkdir update");
system("mkdir PLAYER");
system("mkdir PLAYERS");
system("mkdir DATA");
rm.Initialize(true); // flag to skip loading fonts while the initial install is happening
checkForUpdates();