aboutsummaryrefslogtreecommitdiffstats
path: root/Game
diff options
context:
space:
mode:
authortobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-08-08 14:44:57 +0000
committertobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-08-08 14:44:57 +0000
commit9171899b2f4541fbc4a0a32ee062699b997d70ef (patch)
tree533d214c4253d5406c02d0861d20b434898d2525 /Game
parentb3eb8f3d99823e48ff45bd2c24a94d164f76e879 (diff)
downloadusdx-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
Diffstat (limited to 'Game')
-rw-r--r--Game/Code/Classes/UMain.pas2
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;