Minor readability issue

This commit is contained in:
Andrei "Akari" Alexeyev 2017-02-23 18:34:10 +02:00
parent 76d7b2151f
commit c6a03b2e06

View file

@ -206,7 +206,8 @@ void save_bgm(void)
void restore_bgm(void)
{
start_bgm(saved_bgm);
stralloc(&saved_bgm, NULL);
free(saved_bgm);
saved_bgm = NULL;
}
void set_bgm_volume(float gain)