summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorRay <[email protected]>2024-02-04 12:13:56 +0100
committerRay <[email protected]>2024-02-04 12:13:56 +0100
commit615ee9d177e53415996be026bcbd2977f88a1cc0 (patch)
treeefdc347d8e1b342b0df2880aba9b0583ba2a1ab7 /src
parent80580746e52e9231f076c18b92a90e17895898c2 (diff)
downloadraylib-615ee9d177e53415996be026bcbd2977f88a1cc0.tar.gz
raylib-615ee9d177e53415996be026bcbd2977f88a1cc0.zip
REVIEWED: `rlLoadFramebuffer()`
Diffstat (limited to 'src')
-rw-r--r--src/rtextures.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rtextures.c b/src/rtextures.c
index ed296f29..9fc94c1f 100644
--- a/src/rtextures.c
+++ b/src/rtextures.c
@@ -3893,7 +3893,7 @@ RenderTexture2D LoadRenderTexture(int width, int height)
{
RenderTexture2D target = { 0 };
- target.id = rlLoadFramebuffer(width, height); // Load an empty framebuffer
+ target.id = rlLoadFramebuffer(); // Load an empty framebuffer
if (target.id > 0)
{