diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-01-25 16:49:18 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-01-25 16:49:18 +0000 |
commit | 8c8037702011cbcc7f1bdc420ea1430025c573e0 (patch) | |
tree | cea202e6969287c902a4ab3b8cc6ac0a1034c9cc /Game/Code/Classes | |
parent | 8a73bd2301655e736bc307aad3c807f4b5310903 (diff) | |
download | usdx-8c8037702011cbcc7f1bdc420ea1430025c573e0.tar.gz usdx-8c8037702011cbcc7f1bdc420ea1430025c573e0.tar.xz usdx-8c8037702011cbcc7f1bdc420ea1430025c573e0.zip |
reenabled TLog.LogError(Log1, Log2: string).
Some severe errors have not been displayed because this function was disabled.
If this function should be deprecated then mark it as deprecated instead of just emptying
the body of the function.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@803 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/Classes')
-rw-r--r-- | Game/Code/Classes/ULog.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Game/Code/Classes/ULog.pas b/Game/Code/Classes/ULog.pas index 49b02c00..c9c87a92 100644 --- a/Game/Code/Classes/ULog.pas +++ b/Game/Code/Classes/ULog.pas @@ -234,7 +234,7 @@ end; procedure TLog.LogError(Log1, Log2: string); begin -//asd + LogError(Log1 + ' ['+Log2+']'); end; procedure TLog.CriticalError(Text: string); |