aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/hrtf.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/hrtf.c')
-rw-r--r--Alc/hrtf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Alc/hrtf.c b/Alc/hrtf.c
index 4cc2de51..7932689d 100644
--- a/Alc/hrtf.c
+++ b/Alc/hrtf.c
@@ -148,7 +148,7 @@ void InitHrtf(void)
{
f = fopen(str, "rb");
if(f == NULL)
- ERROR("Could not open %s\n", str);
+ ERR("Could not open %s\n", str);
}
if(f != NULL)
{
@@ -174,13 +174,13 @@ void InitHrtf(void)
newdata.delays[i] = val;
if(val > maxDelay)
{
- ERROR("Invalid delay at idx %zu: %u (max: %u), in %s\n", i, val, maxDelay, str);
+ ERR("Invalid delay at idx %zu: %u (max: %u), in %s\n", i, val, maxDelay, str);
failed = AL_TRUE;
}
}
if(feof(f))
{
- ERROR("Premature end of data while reading %s\n", str);
+ ERR("Premature end of data while reading %s\n", str);
failed = AL_TRUE;
}