From 941e56f6f2cf3fb9c38839b75f7534668904f7ae Mon Sep 17 00:00:00 2001 From: yushulx Date: Thu, 19 Dec 2024 17:05:53 +0800 Subject: [PATCH] Update --- litecam/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litecam/README.md b/litecam/README.md index fb43125..4db5fba 100644 --- a/litecam/README.md +++ b/litecam/README.md @@ -83,7 +83,7 @@ int main() FrameData frame = camera.CaptureFrame(); if (frame.rgbData) { window.ShowFrame(frame.rgbData, frame.width, frame.height); - camera.ReleaseFrame(frame); + ReleaseFrame(frame); } }