summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lua_core.c4
-rw-r--r--src/main.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/lua_core.c b/src/lua_core.c
index 53059b4..b9939cb 100644
--- a/src/lua_core.c
+++ b/src/lua_core.c
@@ -1127,7 +1127,7 @@ bool luaCallMain() {
return state->run;
}
-void luaCallProcess() {
+void luaCallUpdate() {
#if defined PLATFORM_DESKTOP_SDL && defined LUA_EVENTS
platformSendEvents();
@@ -1138,7 +1138,7 @@ void luaCallProcess() {
int tracebackidx = lua_gettop(L);
lua_getglobal( L, "RL" );
- lua_getfield( L, -1, "process" );
+ lua_getfield( L, -1, "update" );
if ( lua_isfunction( L, -1 ) ) {
lua_pushnumber( L, GetFrameTime() );
diff --git a/src/main.c b/src/main.c
index 75bd693..3557bc5 100644
--- a/src/main.c
+++ b/src/main.c
@@ -70,7 +70,7 @@ int main( int argn, const char **argc ) {
if ( WindowShouldClose() ) {
state->run = false;
}
- luaCallProcess();
+ luaCallUpdate();
luaCallDraw();
}
luaCallExit();