diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-08-08 14:44:57 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-08-08 14:44:57 +0000 |
commit | 9171899b2f4541fbc4a0a32ee062699b997d70ef (patch) | |
tree | 533d214c4253d5406c02d0861d20b434898d2525 | |
parent | b3eb8f3d99823e48ff45bd2c24a94d164f76e879 (diff) | |
download | usdx-9171899b2f4541fbc4a0a32ee062699b997d70ef.tar.gz usdx-9171899b2f4541fbc4a0a32ee062699b997d70ef.tar.xz usdx-9171899b2f4541fbc4a0a32ee062699b997d70ef.zip |
changed error on read-only dirs into a warning
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1241 b956fd51-792f-4845-bead-9b4dfca2ff2c
-rw-r--r-- | Game/Code/Classes/UMain.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Game/Code/Classes/UMain.pas b/Game/Code/Classes/UMain.pas index 135113b5..6a87f78f 100644 --- a/Game/Code/Classes/UMain.pas +++ b/Game/Code/Classes/UMain.pas @@ -1005,7 +1005,7 @@ procedure InitializePaths; end; if not lWriteable then - Log.LogError('Dir ('+ aLocation +') is Readonly', 'initialize_path'); + Log.LogWarn('Dir ('+ aLocation +') is Readonly', 'initialize_path'); result := lWriteable; end; |