fix: call base destroy

fix: null references
This commit is contained in:
Brian Matzon 2003-04-28 22:43:27 +00:00
parent c4305dc5a0
commit 098a932fc9
1 changed files with 6 additions and 0 deletions

View File

@ -123,6 +123,12 @@ public class AL extends CoreAL {
alc.destroyContext(context.context);
alc.closeDevice(device.device);
alc.destroy();
alc = null;
device = null;
context = null;
super.destroy();
}
/**