mirror of
https://github.com/DrBeef/Raze.git
synced 2025-01-19 07:31:03 +00:00
- Tidy up some of the spaces on SetValueForKey()
calls.
* Although I hate the spaces and have no idea why anyone would do this, there's too many such calls in the document so easiest to just stick with it :/
This commit is contained in:
parent
8d2e022250
commit
bfafe4e21c
1 changed files with 8 additions and 8 deletions
|
@ -83,15 +83,15 @@ FGameConfigFile::FGameConfigFile ()
|
|||
SetValueForKey ("Path", user_app_support + "/EDuke32", true);
|
||||
SetValueForKey ("Path", user_app_support + "/JFDuke32", true);
|
||||
SetValueForKey ("Path", user_app_support + "/NBlood", true);
|
||||
SetValueForKey("Path", user_app_support + "/Raze/*", true);
|
||||
SetValueForKey ("Path", user_app_support + "/Raze/*", true);
|
||||
SetValueForKey ("Path", "$PROGDIR", true);
|
||||
SetValueForKey ("Path", "$PROGDIR/*", true);
|
||||
SetValueForKey ("Path", local_app_support + "/EDuke32", true);
|
||||
SetValueForKey ("Path", local_app_support + "/JFDuke32", true);
|
||||
SetValueForKey ("Path", local_app_support + "/NBlood", true);
|
||||
SetValueForKey("Path", local_app_support + "/JFSW", true);
|
||||
SetValueForKey("Path", local_app_support + "/VoidSW", true);
|
||||
SetValueForKey("Path", local_app_support + "/Raze/*", true);
|
||||
SetValueForKey ("Path", local_app_support + "/JFSW", true);
|
||||
SetValueForKey ("Path", local_app_support + "/VoidSW", true);
|
||||
SetValueForKey ("Path", local_app_support + "/Raze/*", true);
|
||||
|
||||
#elif !defined(__unix__)
|
||||
SetValueForKey ("Path", "$PROGDIR", true);
|
||||
|
@ -114,13 +114,13 @@ FGameConfigFile::FGameConfigFile ()
|
|||
SetValueForKey ("Path", "/usr/share/games/jfduke3d", true);
|
||||
SetValueForKey ("Path", "/usr/share/games/eduke32", true);
|
||||
SetValueForKey ("Path", "/usr/share/games/nblood", true);
|
||||
SetValueForKey("Path", "/usr/share/games/jfsw", true);
|
||||
SetValueForKey("Path", "/usr/share/games/voidsw", true);
|
||||
SetValueForKey ("Path", "/usr/share/games/jfsw", true);
|
||||
SetValueForKey ("Path", "/usr/share/games/voidsw", true);
|
||||
SetValueForKey ("Path", "/usr/local/share/games/eduke32", true);
|
||||
SetValueForKey ("Path", "/usr/local/share/games/jfduke3d", true);
|
||||
SetValueForKey ("Path", "/usr/local/share/games/nblood", true);
|
||||
SetValueForKey("Path", "/usr/local/share/games/jfsw", true);
|
||||
SetValueForKey("Path", "/usr/local/share/games/voidsw", true);
|
||||
SetValueForKey ("Path", "/usr/local/share/games/jfsw", true);
|
||||
SetValueForKey ("Path", "/usr/local/share/games/voidsw", true);
|
||||
|
||||
#endif
|
||||
SetValueForKey ("Path", "$STEAM", true); // also covers GOG.
|
||||
|
|
Loading…
Reference in a new issue