Skip to content

Commit

Permalink
bump 2.1.0-alpha.4
Browse files Browse the repository at this point in the history
  • Loading branch information
SrRapero720 committed Oct 20, 2024
1 parent 58a88e0 commit b0626b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ id=watermedia
simplename=WaterMedia
brandname=WATERMeDIA
group=me.srrapero720
version=2.1.0-alpha.3
version=2.1.0-alpha.4
versiontype=alpha
github=WaterMediaTeam/watermedia
modrinthid=watermedia
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public VideoPlayer(MediaPlayerFactory factory, Executor renderThreadExecutor) {
public int height() { return height; }

public int preRender() {
if (pbo == -1) return -1;
if (pbo == -1 || buffer == null) return -1;
GL15.glBindBuffer(GL21.GL_PIXEL_UNPACK_BUFFER, pbo);
synchronized (sync) {
GL15.glUnmapBuffer(GL21.GL_PIXEL_UNPACK_BUFFER);
Expand Down

0 comments on commit b0626b6

Please sign in to comment.