aboutsummaryrefslogtreecommitdiff
path: root/c/echo.c
diff options
context:
space:
mode:
authorJavier Degirolmo2012-07-15 21:02:54 -0300
committerJavier Degirolmo2012-07-15 21:02:54 -0300
commitc7cf8a2eb4178f59a5dfe2c3ad6bf1a39eeca523 (patch)
treeddaf8602e1d089644753d6e0a52421f35b730b10 /c/echo.c
parent84ce0220dd5449587467c37d7afbd99fb1fbe69e (diff)
Added BGM pausing support (stop BGM to pause, resume BGM to unpause)
Diffstat (limited to 'c/echo.c')
-rw-r--r--c/echo.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/c/echo.c b/c/echo.c
index 0c4fc33..249ea92 100644
--- a/c/echo.c
+++ b/c/echo.c
@@ -155,6 +155,15 @@ void echo_stop_bgm(void) {
}
//***************************************************************************
+// echo_resume_bgm
+// Resumes background music playback.
+//***************************************************************************
+
+void echo_resume_bgm(void) {
+ echo_send_command(ECHO_CMD_RESUMEBGM);
+}
+
+//***************************************************************************
// echo_play_sfx
// Starts playing a sound effect.
//---------------------------------------------------------------------------