aboutsummaryrefslogtreecommitdiffstats
path: root/src/base/UPlatformMacOSX.pas
diff options
context:
space:
mode:
authork-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2010-03-19 22:21:51 +0000
committerk-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2010-03-19 22:21:51 +0000
commit429409de6a59388f26b4857851751b1017eba0ca (patch)
tree10ed0066efd8baf9f3cc76780c4b0536ed84d88f /src/base/UPlatformMacOSX.pas
parent9bcf10e01e4bb3b60b295c7173d7e7ce1eb5ed74 (diff)
downloadusdx-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 'src/base/UPlatformMacOSX.pas')
-rw-r--r--src/base/UPlatformMacOSX.pas18
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;