[Fix] (MG_Backend/DirectGLES): Fix wrong return; in buffer syncing.

This commit is contained in:
BZLZHH
2025-11-01 23:48:25 +08:00
parent 2c05d937e5
commit a39d6b67f9
@@ -23,7 +23,7 @@ namespace MobileGL::MG_Backend::DirectGLES {
}
for (const auto& attrib : currentVAOObject->GetAllAttributes()) {
if (!attrib.Enabled) return;
if (!attrib.Enabled) continue;
const auto& bufferObject = attrib.Buffer;
if (bufferObject) {
buffersToSync.push_back(bufferObject);