diff options
| author | jussi | 2024-02-18 15:26:21 +0200 |
|---|---|---|
| committer | jussi | 2024-02-18 15:26:21 +0200 |
| commit | 9b27daefc225752f3f24ea862e9c2be13f8addf6 (patch) | |
| tree | cfa74048b9bddb9dc58e8117a4a7af845ee137eb /src | |
| parent | 9de10be468c5151765a0e007d5889971c637fd24 (diff) | |
| download | reilua-enhanced-9b27daefc225752f3f24ea862e9c2be13f8addf6.tar.gz reilua-enhanced-9b27daefc225752f3f24ea862e9c2be13f8addf6.tar.bz2 reilua-enhanced-9b27daefc225752f3f24ea862e9c2be13f8addf6.zip | |
Process renamed to update to be more inline with naming of raylib and common convention.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lua_core.c | 4 | ||||
| -rw-r--r-- | src/main.c | 2 |
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() ); @@ -70,7 +70,7 @@ int main( int argn, const char **argc ) { if ( WindowShouldClose() ) { state->run = false; } - luaCallProcess(); + luaCallUpdate(); luaCallDraw(); } luaCallExit(); |
