@@ -475,11 +475,11 @@ bool setSystemPaths()
475
475
// Use ".\bin\.."
476
476
path_share = std::string (buf) + " \\ .." ;
477
477
478
- // Use "C:\Documents and Settings\user\Application Data\<PROJECT_NAME_LOWER >"
478
+ // Use "C:\Documents and Settings\user\Application Data\<PROJECT_NAME >"
479
479
DWORD len = GetEnvironmentVariable (" APPDATA" , buf, sizeof (buf));
480
480
FATAL_ERROR_IF (len == 0 || len > sizeof (buf), " Failed to get APPDATA" );
481
481
482
- path_user = std::string (buf) + DIR_DELIM PROJECT_NAME_LOWER ;
482
+ path_user = std::string (buf) + DIR_DELIM + lowercase (PROJECT_NAME) ;
483
483
return true ;
484
484
}
485
485
@@ -511,7 +511,7 @@ bool setSystemPaths()
511
511
trylist.push_back (static_sharedir);
512
512
513
513
trylist.push_back (bindir + DIR_DELIM " .." DIR_DELIM " share"
514
- DIR_DELIM PROJECT_NAME_LOWER );
514
+ DIR_DELIM + lowercase (PROJECT_NAME) );
515
515
trylist.push_back (bindir + DIR_DELIM " .." );
516
516
517
517
#ifdef __ANDROID__
@@ -540,7 +540,7 @@ bool setSystemPaths()
540
540
541
541
#ifndef __ANDROID__
542
542
path_user = std::string (getenv (" HOME" )) + DIR_DELIM " ."
543
- PROJECT_NAME_LOWER ;
543
+ + lowercase (PROJECT_NAME) ;
544
544
#endif
545
545
546
546
return true ;
@@ -563,8 +563,9 @@ bool setSystemPaths()
563
563
}
564
564
CFRelease (resources_url);
565
565
566
- path_user = std::string (getenv (" HOME" )) +
567
- " /Library/Application Support/" PROJECT_NAME_LOWER;
566
+ path_user = std::string (getenv (" HOME" ))
567
+ + " /Library/Application Support/"
568
+ + lowercase (PROJECT_NAME);
568
569
return true ;
569
570
}
570
571
@@ -575,7 +576,7 @@ bool setSystemPaths()
575
576
{
576
577
path_share = STATIC_SHAREDIR;
577
578
path_user = std::string (getenv (" HOME" )) + DIR_DELIM " ."
578
- PROJECT_NAME_LOWER ;
579
+ + lowercase (PROJECT_NAME) ;
579
580
return true ;
580
581
}
581
582
0 commit comments