diff options
| author | raysan5 <raysan5@gmail.com> | 2014-06-09 16:33:53 +0200 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2014-06-09 16:33:53 +0200 |
| commit | 8e186e840c7aa9dd79e447e1a67ac81d188bff2d (patch) | |
| tree | c0f076fd1a0ed2689564c3e93008297414d4ff2a /src/audio.c | |
| parent | a42f8328b2b3e9fb87961536cfda370635fd6bb1 (diff) | |
| download | raylib-8e186e840c7aa9dd79e447e1a67ac81d188bff2d.tar.gz raylib-8e186e840c7aa9dd79e447e1a67ac81d188bff2d.zip | |
Updated some comments
Diffstat (limited to 'src/audio.c')
| -rw-r--r-- | src/audio.c | 2 |
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); |
