Skip to content

Commit

Permalink
Fix missing parentesis
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-viva authored Apr 3, 2024
1 parent 1fffae3 commit 1e498c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ private static void initialize () {
Gdx.app.log("Gdx-Video", "VideoPlayer can't be used on android < API level 12");
}
} else if (type == ApplicationType.iOS) {
if (Gdx.app.getVersion >= 15) {
if (Gdx.app.getVersion() >= 15) {
className = "com.badlogic.gdx.video.VideoPlayerIos";
} else {
Gdx.app.log("Gdx-Video", "VideoPlayer can't be used on iOS < 15");
Expand Down

0 comments on commit 1e498c5

Please sign in to comment.