aboutsummaryrefslogtreecommitdiffstats
path: root/alc/backends/wave.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'alc/backends/wave.cpp')
-rw-r--r--alc/backends/wave.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/alc/backends/wave.cpp b/alc/backends/wave.cpp
index 3b0a30d8..7bcc3436 100644
--- a/alc/backends/wave.cpp
+++ b/alc/backends/wave.cpp
@@ -223,11 +223,8 @@ void WaveBackend::open(const ALCchar *name)
mFile = fopen(fname, "wb");
#endif
if(!mFile)
- {
- ERR("Could not open file '%s': %s\n", fname, strerror(errno));
throw al::backend_exception{ALC_INVALID_VALUE, "Could not open file '%s': %s", fname,
strerror(errno)};
- }
mDevice->DeviceName = name;
}