summaryrefslogtreecommitdiffstats
path: root/src/viewport.c
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-11-16 03:25:55 (EST)
committer P. J. McDermott <pjm@nac.net>2013-11-16 03:25:55 (EST)
commitb0b53ee8fe5a6078dfaaf196dc3c1ad179f92eae (patch)
tree8b8ce98b59b9b8ab8b3a2febc9bc96c320049915 /src/viewport.c
parent81e576ed00137543f89e1892f148f442c807fa40 (diff)
downloadoverworld-rpg-b0b53ee8fe5a6078dfaaf196dc3c1ad179f92eae.zip
overworld-rpg-b0b53ee8fe5a6078dfaaf196dc3c1ad179f92eae.tar.gz
overworld-rpg-b0b53ee8fe5a6078dfaaf196dc3c1ad179f92eae.tar.bz2
Expose init_viewport() to Lua scripts.
Diffstat (limited to 'src/viewport.c')
-rw-r--r--src/viewport.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/viewport.c b/src/viewport.c
index cff4732..e908268 100644
--- a/src/viewport.c
+++ b/src/viewport.c
@@ -17,6 +17,7 @@
*/
#include <SDL.h>
+#include <lua.h>
#include "viewport.h"
#include "logging.h"
@@ -44,3 +45,17 @@ init_viewport(Uint16 width, Uint16 height, int bpp)
return vp;
}
+
+int
+init_viewport_lua(lua_State *L)
+{
+ Uint16 width;
+ Uint16 height;
+
+ width = lua_tointeger(L, 1);
+ height = lua_tointeger(L, 2);
+
+ init_viewport(width, height, 8);
+
+ return 0;
+}