From 8d1f897ca44c6dcfba13c3c854e7eefd3fabdac4 Mon Sep 17 00:00:00 2001 From: Allen Date: Wed, 8 Jun 2016 16:12:36 -0400 Subject: [PATCH] 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. --- src/source/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/source/main.cpp b/src/source/main.cpp index 1c3f72b..ec7cfd4 100644 --- a/src/source/main.cpp +++ b/src/source/main.cpp @@ -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();