Skip to content

Commit

Permalink
Update KernelDebuggerInterface.pas
Browse files Browse the repository at this point in the history
  • Loading branch information
rzndsa authored Aug 20, 2016
1 parent b212318 commit 172724b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Cheat Engine/KernelDebuggerInterface.pas
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ implementation

uses symbolhandler, ProcessHandlerUnit;

resourcestring
rsDBKDebug_StartDebuggingFailed ='DBKDebug_StartDebugging failed';

procedure TThreadPoller.CreateThreadEvent(threadid: dword);
var ie: PInjectedEvent;
begin
Expand Down Expand Up @@ -220,7 +223,7 @@ function TKernelDebugInterface.DebugActiveProcess(dwProcessId: DWORD): WINBOOL;
threadpoller.Start;
end
else
raise exception.create('DBKDebug_StartDebugging failed');
raise exception.create(rsDBKDebug_StartDebuggingFailed);


end;
Expand Down

0 comments on commit 172724b

Please sign in to comment.