X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=mood.c;h=64cfe835ece10c98210613f57a1178fceaaee121;hp=bf6c40e165c52ba762457ae8901537bc6ca2594a;hb=53d503ce;hpb=cc18590c9eeba5caef75e7d7ac495ac3dbf58c69 diff --git a/mood.c b/mood.c index bf6c40e1..64cfe835 100644 --- a/mood.c +++ b/mood.c @@ -9,10 +9,10 @@ #include #include "para.h" #include "error.h" +#include "string.h" #include "afh.h" #include "afs.h" #include "list.h" -#include "string.h" /** * Contains statistical data of the currently admissible audio files. @@ -1020,7 +1020,7 @@ out: * Free all resources of the current mood which were allocated during * mood_open(). */ -void close_current_mood(void) +static void close_current_mood(void) { destroy_mood(current_mood); current_mood = NULL; @@ -1047,7 +1047,7 @@ int reload_current_mood(void) if (!current_mood) return 1; - score_shutdown(0); +// score_close(0); mood_name = para_strdup(current_mood->name); close_current_mood(); ret = change_current_mood(mood_name);