Navigation Menu

Skip to content

Commit

Permalink
fix build when DEBUG=1 is set
Browse files Browse the repository at this point in the history
  • Loading branch information
krnlyng committed Apr 8, 2014
1 parent 1794cc4 commit 565e288
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/openframeworks.c
Expand Up @@ -184,7 +184,7 @@ openframeworks_jnienv_CallVoidMethodV(JNIEnv *env, jobject p1, jmethodID p2, va_
else if (strcmp(p2->name, "setVolume") == 0)
{
double volume = va_arg(p3, double);
MODULE_DEBUG_PRINTF("setVolume %.3f, obj %p\n", arg, obj);
MODULE_DEBUG_PRINTF("setVolume %.3f, obj %p\n", volume, obj);
if (player->chunk != NULL) {
apkenv_mixer_volume_sound(player->chunk, volume);
} else if (player->music != NULL && player->music_playing) {
Expand Down

0 comments on commit 565e288

Please sign in to comment.