re-enabled missing ALC error check

This commit is contained in:
Brian Matzon 2007-04-19 22:54:25 +00:00
parent ba11118e30
commit fdb0d2cd1d

View file

@ -158,7 +158,7 @@ public final class ALC10 {
public static String alcGetString(ALCdevice device, int pname) {
String result;
result = nalcGetString(getDevice(device), pname);
//Util.checkALCError();
Util.checkALCError();
return result;
}
private native static String nalcGetString(long device, int pname);