diff options
author | pixel <pixel> | 2004-04-27 17:52:15 +0000 |
---|---|---|
committer | pixel <pixel> | 2004-04-27 17:52:15 +0000 |
commit | d14af5a3b7b816cc474fee19525627fdfcd7c71c (patch) | |
tree | 4472d8cc84a6d6b23253df2872404697fd8b723b | |
parent | bbfc93a5b990d1009777de1fbd3efd51508f18ce (diff) |
Whoops...
-rw-r--r-- | lib/luapsx.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/luapsx.cpp b/lib/luapsx.cpp index 14dc1e3..68cfd3e 100644 --- a/lib/luapsx.cpp +++ b/lib/luapsx.cpp @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: luapsx.cpp,v 1.2 2004-02-29 17:44:42 pixel Exp $ */ +/* $Id: luapsx.cpp,v 1.3 2004-04-27 17:52:15 pixel Exp $ */ #include <LuaHandle.h> #include "luapsx.h" @@ -84,6 +84,8 @@ struct lua_functypes_t psx_functions[] = { class sLua_psx : public Base { public: DECLARE_FUNCTION(psx, PSX_BSDECODE); + DECLARE_FUNCTION(psx, PSX_BSENCODE); + DECLARE_FUNCTION(psx, PSX_BLIT); private: static int psx_proceed_statics(Lua * L, int n, int caller); }; @@ -92,6 +94,8 @@ void Luapsx::pushstatics(Lua * L) throw (GeneralException ) { CHECK_FUNCTIONS(psx); PUSH_FUNCTION(psx, PSX_BSDECODE); + PUSH_FUNCTION(psx, PSX_BSENCODE); + PUSH_FUNCTION(psx, PSX_BLIT); L->push("BLIT_OVER"); L->push((lua_Number) BLIT_OVER); |