Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/gcompris/bar.c
diff options
context:
space:
mode:
authorYves Combe <ycombe@src.gnome.org>2006-12-18 23:42:31 (GMT)
committer Yves Combe <ycombe@src.gnome.org>2006-12-18 23:42:31 (GMT)
commitf106d808e51077cb5428dd7657da4c9beca7baa8 (patch)
tree2a71dce23cd3c503abde54d4428fb6651eec6e68 /src/gcompris/bar.c
parent140dc546466033a2ca7b96dd2384bc19b59e99f6 (diff)
GC_SOUND: Add a property for policy. Fix bug if played item is destroyedEXPERIMENTAL
GC_SOUND: Add a property for policy. Fix bug if played item is destroyed at end before it's "play_end" callback. TODO: fix bug if item is destroyed when it's playing. GCOMPRIS fix memory and bar.c TODO: python binding for gc_sound_from_gc_filename
Diffstat (limited to 'src/gcompris/bar.c')
-rw-r--r--src/gcompris/bar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gcompris/bar.c b/src/gcompris/bar.c
index bb5ac5b..759999e 100644
--- a/src/gcompris/bar.c
+++ b/src/gcompris/bar.c
@@ -536,13 +536,13 @@ item_event_bar(GnomeCanvasItem *item, GdkEvent *event, gchar *data)
}
else if(!strcmp((char *)data, "back"))
{
- gc_sound_play_ogg ("gobble", NULL);
+ gc_sound_play_ogg ("sounds/gobble.ogg", NULL);
gc_bar_hide (TRUE);
gc_board_stop();
}
else if(!strcmp((char *)data, "help"))
{
- gc_sound_play_ogg ("gobble", NULL);
+ gc_sound_play_ogg ("sounds/gobble.ogg", NULL);
gc_help_start(gcomprisBoard);
}
else if(!strcmp((char *)data, "repeat"))