hedgewars/LuaPas.pas
changeset 5551 0897b947e7a0
parent 5549 ccfb9b8ab9d1
child 6453 11c578d30bd3
--- a/hedgewars/LuaPas.pas	Fri Aug 12 10:36:37 2011 -0400
+++ b/hedgewars/LuaPas.pas	Fri Aug 12 12:42:50 2011 -0400
@@ -416,7 +416,7 @@
 procedure lua_setglobal(L : Plua_State; s : PChar);
 procedure lua_getglobal(L : Plua_State; s : PChar);
 
-function lua_tostring(L : Plua_State; idx : LongInt) : shortstring;
+function lua_tostring(L : Plua_State; idx : LongInt) : AnsiString;
 
 
 (*
@@ -757,7 +757,7 @@
 implementation
 
 uses
-  SysUtils, Strings;
+  SysUtils;
 
 (*****************************************************************************)
 (*                            luaconfig.h                                    *)
@@ -872,9 +872,9 @@
   lua_getfield(L, LUA_GLOBALSINDEX, s);
 end;
 
-function lua_tostring(L : Plua_State; idx : LongInt) : shortstring;
+function lua_tostring(L : Plua_State; idx : LongInt) : AnsiString;
 begin
-  lua_tostring := Strings.StrPas(lua_tolstring(L, idx, nil));
+  lua_tostring := SysUtils.StrPas(lua_tolstring(L, idx, nil));
 end;
 
 function lua_open : Plua_State;