aboutsummaryrefslogtreecommitdiff
path: root/src/audio.c
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2014-06-09 16:33:53 +0200
committerraysan5 <raysan5@gmail.com>2014-06-09 16:33:53 +0200
commit8e186e840c7aa9dd79e447e1a67ac81d188bff2d (patch)
treec0f076fd1a0ed2689564c3e93008297414d4ff2a /src/audio.c
parenta42f8328b2b3e9fb87961536cfda370635fd6bb1 (diff)
downloadraylib-8e186e840c7aa9dd79e447e1a67ac81d188bff2d.tar.gz
raylib-8e186e840c7aa9dd79e447e1a67ac81d188bff2d.zip
Updated some comments
Diffstat (limited to 'src/audio.c')
-rw-r--r--src/audio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio.c b/src/audio.c
index c32b9f6e..2066b370 100644
--- a/src/audio.c
+++ b/src/audio.c
@@ -116,7 +116,7 @@ void InitAudioDevice()
TraceLog(ERROR, "Could not setup audio context");
}
- TraceLog(INFO, "Audio device and context initialized: %s\n", alcGetString(device, ALC_DEVICE_SPECIFIER));
+ TraceLog(INFO, "Audio device and context initialized successfully: %s\n", alcGetString(device, ALC_DEVICE_SPECIFIER));
// Listener definition (just for 2D)
alListener3f(AL_POSITION, 0, 0, 0);