From 9b27daefc225752f3f24ea862e9c2be13f8addf6 Mon Sep 17 00:00:00 2001 From: jussi Date: Sun, 18 Feb 2024 15:26:21 +0200 Subject: Process renamed to update to be more inline with naming of raylib and common convention. --- examples/pong/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/pong') diff --git a/examples/pong/main.lua b/examples/pong/main.lua index 635b355..fc8cd75 100644 --- a/examples/pong/main.lua +++ b/examples/pong/main.lua @@ -69,7 +69,7 @@ function RL.init() reset() end -function RL.process( delta ) +function RL.update( delta ) -- Left player controls. if RL.IsKeyDown( RL.KEY_W ) and 0 < playerLeft.pos.y then playerLeft.pos.y = playerLeft.pos.y - PLAYER_SPEED * delta -- cgit v1.2.3