1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-11 07:22:22 +00:00

- Fix build with new openal

Reported by:	pointyhat, QAT
This commit is contained in:
Dmitry Marakasov 2010-04-07 14:10:26 +00:00
parent 8b93f9f519
commit 261c1e3936
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=252384

View File

@ -0,0 +1,29 @@
--- src/sound.cc.orig 2010-04-07 17:42:43.000000000 +0400
+++ src/sound.cc 2010-04-07 17:44:00.000000000 +0400
@@ -31,7 +31,7 @@
ALenum error = alGetError();
if (error != AL_NO_ERROR) {
ls_error("OpenAL Error %d", error);
- const ALbyte * errtxt = alGetString(error);
+ const ALchar * errtxt = alGetString(error);
error = alGetError();
if (error == AL_NO_ERROR) {
ls_error(": %s \n", errtxt);
@@ -318,7 +318,7 @@
ALCenum error = alcGetError(dev);
if (error != ALC_NO_ERROR) {
ls_error("OpenAL (ALC) Error %d", error);
- const ALbyte * errtxt = alcGetString(NULL,error);
+ const ALCchar * errtxt = alcGetString(NULL,error);
error = alcGetError(dev);
if (error == ALC_NO_ERROR) {
ls_error(": %s \n", errtxt);
@@ -340,7 +340,7 @@
if (device == NULL ) {
throw std::runtime_error("SoundMan: Failed to initialize Sound subsystem.");
} else {
- const ALCbyte * device_specifier =
+ const ALCchar * device_specifier =
alcGetString(device, ALC_DEVICE_SPECIFIER);
check(device);
ls_message(" Using device \"%s\"\n", device_specifier);