summaryrefslogtreecommitdiffhomepage
path: root/examples/shaders/shaders_write_depth.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/shaders/shaders_write_depth.c')
-rw-r--r--examples/shaders/shaders_write_depth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/shaders/shaders_write_depth.c b/examples/shaders/shaders_write_depth.c
index d9e40d0d..ef011693 100644
--- a/examples/shaders/shaders_write_depth.c
+++ b/examples/shaders/shaders_write_depth.c
@@ -92,7 +92,7 @@ int main(void)
BeginDrawing();
ClearBackground(RAYWHITE);
- DrawTextureRec(target.texture, (Rectangle) { 0, 0, screenWidth, -screenHeight }, (Vector2) { 0, 0 }, WHITE);
+ DrawTextureRec(target.texture, (Rectangle) { 0, 0, (float)screenWidth, (float)-screenHeight }, (Vector2) { 0, 0 }, WHITE);
DrawFPS(10, 10);
EndDrawing();
//----------------------------------------------------------------------------------