mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-16 14:25:02 -05:00
Merge branch 'master' of ssh://villavu.com:54367/simba
This commit is contained in:
commit
4cd63ffc48
@ -278,9 +278,9 @@ uses
|
||||
{Some General PS Functions here}
|
||||
procedure psWriteln(str : string); extdecl;
|
||||
begin
|
||||
if CurrThread.Prop.WriteTimeStamp then
|
||||
if Assigned(CurrThread) and CurrThread.Prop.WriteTimeStamp then
|
||||
str := format('[%s]: %s', [TimeToStr(TimeStampToDateTime(MSecsToTimeStamp(GetTickCount - CurrThread.StartTime))), str]);
|
||||
if Assigned(CurrThread.DebugTo) then
|
||||
if Assigned(CurrThread) and Assigned(CurrThread.DebugTo) then
|
||||
CurrThread.DebugTo(str)
|
||||
else
|
||||
mDebugLn(str);
|
||||
@ -288,7 +288,7 @@ end;
|
||||
|
||||
procedure ps_DebugLn(str : string); extdecl;
|
||||
begin
|
||||
if CurrThread.Prop.WriteTimeStamp then
|
||||
if Assigned(CurrThread) and CurrThread.Prop.WriteTimeStamp then
|
||||
str := format('[%s]: %s', [TimeToStr(TimeStampToDateTime(MSecsToTimeStamp(GetTickCount - CurrThread.StartTime))), str]);
|
||||
mDebugLn(str);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user