Skip to content

Commit

Permalink
Update LuaHandler.pas
Browse files Browse the repository at this point in the history
  • Loading branch information
rzndsa authored Aug 20, 2016
1 parent 5744828 commit 1f3be21
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Cheat Engine/LuaHandler.pas
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ procedure lua_setPrintOutput(output: TStrings);
rsThisTypeIsNotSupportedHere='This type is not supported here';
rsIncorrectNumberOfParameters='Incorrect number of parameters';


implementation

uses mainunit, mainunit2, luaclass, frmluaengineunit, plugin, pluginexports,
Expand Down Expand Up @@ -1139,7 +1138,7 @@ function LuaPanic(L: Plua_State): Integer; cdecl;
begin
result:=0;
lua_pop(LuaVM, lua_gettop(luavm));
raise exception.create('LUA panic!');
raise exception.create(rsLUAPanic);
end;


Expand Down

0 comments on commit 1f3be21

Please sign in to comment.