1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Merge pull request #101958 from berarma/theora_fixes

Fix Theora video issues
This commit is contained in:
Rémi Verschelde
2025-02-17 09:47:36 +01:00
4 changed files with 91 additions and 231 deletions

View File

@@ -86,7 +86,7 @@ public:
} else if (w < r) {
space = r - w - 1;
} else {
space = (rb_len - r) + w - 1;
space = (rb_len - w) + (r - 1);
}
return space;