diff options
author | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-03-19 22:21:51 +0000 |
---|---|---|
committer | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-03-19 22:21:51 +0000 |
commit | 429409de6a59388f26b4857851751b1017eba0ca (patch) | |
tree | 10ed0066efd8baf9f3cc76780c4b0536ed84d88f | |
parent | 9bcf10e01e4bb3b60b295c7173d7e7ce1eb5ed74 (diff) | |
download | usdx-429409de6a59388f26b4857851751b1017eba0ca.tar.gz usdx-429409de6a59388f26b4857851751b1017eba0ca.tar.xz usdx-429409de6a59388f26b4857851751b1017eba0ca.zip |
lowercase log folder name and soure cosmetics.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2211 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | src/base/UPlatformMacOSX.pas | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/base/UPlatformMacOSX.pas b/src/base/UPlatformMacOSX.pas index fda49a45..d55e8bea 100644 --- a/src/base/UPlatformMacOSX.pas +++ b/src/base/UPlatformMacOSX.pas @@ -121,23 +121,23 @@ type {** * GetLogPath returns the path for log messages. Currently it is set to - * $HOME/Library/Application Support/UltraStarDeluxe/Log. + * $HOME/Library/Application Support/UltraStarDeluxe/log. *} - function GetLogPath : IPath; override; + function GetLogPath: IPath; override; {** * GetGameSharedPath returns the path for shared resources. Currently it * is set to /Library/Application Support/UltraStarDeluxe. * However it is not used. *} - function GetGameSharedPath : IPath; override; + function GetGameSharedPath: IPath; override; {** * GetGameUserPath returns the path for user resources. Currently it is * set to $HOME/Library/Application Support/UltraStarDeluxe. * This is where a user can add songs, themes, .... *} - function GetGameUserPath : IPath; override; + function GetGameUserPath: IPath; override; end; implementation @@ -159,9 +159,9 @@ var // OldBaseDir contains the path to the folder, where the search started. // It is used to return to it, when the search is completed in all folders. OldBaseDir: IPath; - Iter: IFileIterator; - FileInfo: TFileInfo; - CurPath: IPath; + Iter: IFileIterator; + FileInfo: TFileInfo; + CurPath: IPath; // These two lists contain all folder and file names found // within the folder @link(BaseDir). DirectoryList, FileList: IInterfaceList; @@ -174,7 +174,7 @@ var CreatedDirectory: boolean; FileAttrs: integer; DirectoryPath: IPath; - UserPath: IPath; + UserPath: IPath; SrcFile, TgtFile: IPath; begin // Get the current folder and save it in OldBaseDir for returning to it, when @@ -265,7 +265,7 @@ end; function TPlatformMacOSX.GetLogPath: IPath; begin - Result := GetApplicationSupportPath.Append('Logs'); + Result := GetApplicationSupportPath.Append('logs'); end; function TPlatformMacOSX.GetGameSharedPath: IPath; |