From 14b73fb7e62e7b5e51b568830c0b8186f7adb68d Mon Sep 17 00:00:00 2001 From: TomW Date: Wed, 5 Aug 2015 20:46:55 +0100 Subject: [PATCH] Fixed device requested in MingW64 OpenAL code. Patch from Battler. --- src/soundopenal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soundopenal.c b/src/soundopenal.c index 8e0a329..076b7dc 100644 --- a/src/soundopenal.c +++ b/src/soundopenal.c @@ -29,7 +29,7 @@ ALvoid alutInit(ALint *argc,ALbyte **argv) ALCdevice *Device; //Open device - Device=alcOpenDevice((ALubyte*)"DirectSound3D"); + Device=alcOpenDevice((ALubyte*)""); //Create context(s) Context=alcCreateContext(Device,NULL); //Set active context