fixed 1.1 detection so that oal 1.1 stubs are loaded for major > 1

This commit is contained in:
Brian Matzon 2007-11-12 16:02:57 +00:00
parent dbe9667c3d
commit c3500a14d2
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ public final class ALC11 {
if(major >= 1) {
// checking for version 1.1+
if(minor >= 1) {
if(major > 1 || minor >= 1) {
initNativeStubs();
}
}