From 8dfee10e60420e8e568c7441464fc4375635b873 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Sun, 14 Mar 2021 00:14:42 +0000 Subject: [PATCH] update pyray example in since pointer deref is now automatic, fixes issue #27 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ec4f181..9ad672b 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ camera = pyray.Camera3D([18.0, 16.0, 18.0], [0.0, 0.0, 0.0], [0.0, 1.0, 0.0], 45 pyray.set_camera_mode(camera, pyray.CAMERA_ORBITAL) while not pyray.window_should_close(): - pyray.update_camera(pyray.pointer(camera)) + pyray.update_camera(camera) pyray.begin_drawing() pyray.clear_background(RAYWHITE) pyray.begin_mode_3d(camera)