Skip to content

Commit

Permalink
macOS Maximum Support message
Browse files Browse the repository at this point in the history
  • Loading branch information
Richy-Z committed May 19, 2024
1 parent 716bff0 commit 69b39a3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ private void hintOverride(int hint, int value) {
// OpenGL stopped receiving support since OS X Mavericks (10.9) in favour of metal of course :heart_eyes:
// if on macOS, use 4.1 instead of 4.6
if (osName.contains("mac")) {
LOGGER.info("It looks like you're on macOS, which ditched OpenGL in 2013 in favour of Metal. The maximum supported version is 4.1, so that will be used instead of 4.6.");
LOGGER.info("It looks like you're on macOS, which ditched OpenGL in 2013 in favour of Metal. The maximum supported version is OpenGL 4.1.");
value = 1;
} else {
// all other OSes
Expand Down

0 comments on commit 69b39a3

Please sign in to comment.