diff --git a/android/examples/OpenGL/CameraLight/CameraLight.pde b/android/examples/OpenGL/CameraLight/CameraLight.pde index 7c567c0a1..81c0007e7 100644 --- a/android/examples/OpenGL/CameraLight/CameraLight.pde +++ b/android/examples/OpenGL/CameraLight/CameraLight.pde @@ -18,7 +18,7 @@ void draw() { if (mousePressed) { // The arguments of ortho are specified in screen coordinates, where (0,0) // is the upper left corner of the screen - ortho(0, 0, width, height); + ortho(0, width, 0, height); } else { float fov = PI/3.0;