mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-24 02:02:17 -05:00
Added debug message for when initializing the interpreter fails.
This commit is contained in:
parent
a143016beb
commit
bf0f806ecf
@ -1652,8 +1652,12 @@ begin
|
||||
raise Exception.CreateFmt('Unknown Interpreter %d!', [Interpreter]);
|
||||
end;
|
||||
except
|
||||
mDebugLn('Failed to initialise the interpreter');
|
||||
Exit;
|
||||
on E: Exception do
|
||||
begin
|
||||
mDebugLn('Failed to initialise the interpreter: ' + E.Message);
|
||||
Thread := nil;
|
||||
Exit;
|
||||
end;
|
||||
end;
|
||||
|
||||
{$IFNDEF TERMINALWRITELN}
|
||||
@ -2379,6 +2383,9 @@ begin
|
||||
end;
|
||||
end;
|
||||
SimbaForm.InitializeTMThread(t);
|
||||
if (t = nil) then
|
||||
Exit;
|
||||
|
||||
KillThread(t.ThreadID); { XXX: Why do we kill the thread again ? }
|
||||
if (t is TPSThread) then
|
||||
try
|
||||
|
Loading…
Reference in New Issue
Block a user