Fix typo to get the proper minor ALC version

This commit is contained in:
Chris Robinson 2008-09-12 18:07:12 -07:00
parent 1266580420
commit f4ea188ffa

View File

@ -165,7 +165,7 @@ static void printALCInfo (void)
alcGetString(device, ALC_CAPTURE_DEFAULT_DEVICE_SPECIFIER));
alcGetIntegerv(device, ALC_MAJOR_VERSION, 1, &major);
alcGetIntegerv(device, ALC_MAJOR_VERSION, 1, &minor);
alcGetIntegerv(device, ALC_MINOR_VERSION, 1, &minor);
checkForErrors();
printf("ALC version: %d.%d\n", (int)major, (int)minor);