diff options
author | Filippos Karapetis | 2013-02-03 18:18:43 +0200 |
---|---|---|
committer | Filippos Karapetis | 2013-02-03 18:18:43 +0200 |
commit | 6286779d0a991d4e3c6d8c47f09a0ff8b8819551 (patch) | |
tree | 7ab8bca7eb0e13d0239777e43306b90a84834a0c /engines | |
parent | afdb28b4e96d0a7ebfba15821b3e7071f4a02e6a (diff) | |
download | scummvm-rg350-6286779d0a991d4e3c6d8c47f09a0ff8b8819551.tar.gz scummvm-rg350-6286779d0a991d4e3c6d8c47f09a0ff8b8819551.tar.bz2 scummvm-rg350-6286779d0a991d4e3c6d8c47f09a0ff8b8819551.zip |
SWORD25: Fix some spacing in LUA
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sword25/util/lua/ldo.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sword25/util/lua/ldo.cpp b/engines/sword25/util/lua/ldo.cpp index 33ed3255a3..c162a62e98 100644 --- a/engines/sword25/util/lua/ldo.cpp +++ b/engines/sword25/util/lua/ldo.cpp @@ -101,10 +101,10 @@ static void resetstack (lua_State *L, int status) { void luaD_throw (lua_State *L, int errcode) { if (L->errorJmp) { L->errorJmp->status = errcode; - // LUAI_THROW has been replaced with an error message in ScummVM, together - // with the LUA error code and description + // LUAI_THROW has been replaced with an error message in ScummVM, together + // with the LUA error code and description //LUAI_THROW(L, L->errorJmp); - error("LUA error occured, error code is %d (%s)", errcode, luaErrorDescription[errcode]); + error("LUA error occured, error code is %d (%s)", errcode, luaErrorDescription[errcode]); } else { L->status = cast_byte(errcode); |