diff options
-rw-r--r-- | src/base/UPathUtils.pas | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/base/UPathUtils.pas b/src/base/UPathUtils.pas index 2bfcde42..b568a22d 100644 --- a/src/base/UPathUtils.pas +++ b/src/base/UPathUtils.pas @@ -54,6 +54,10 @@ var FontPath: IPath; ResourcesPath: IPath; PlaylistPath: IPath; + WebsitePath: IPath; + WebScoresPath: IPath; + SoundFontsPath: IPath; + AvatarsPath: IPath; function FindPath(out PathResult: IPath; const RequestedPath: IPath; NeedsWritePermission: boolean): boolean; procedure InitializePaths; @@ -173,7 +177,11 @@ begin FindPath(VisualsPath, SharedPath.Append('visuals'), false); FindPath(FontPath, SharedPath.Append('fonts'), false); FindPath(ResourcesPath, SharedPath.Append('resources'), false); - +{ add later as required + FindPath(WebsitePath, SharedPath.Append('webs'), false); + FindPath(SoundFontsPath, SharedPath.Append('soundfonts'), false); + FindPath(AvatarsPath, SharedPath.Append('avatars'), false); +} // Playlists are not shared as we need one directory to write too FindPath(PlaylistPath, UserPath.Append('playlists'), true); |