summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/luapsx.cpp6
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);