From 9a9d29234d1591dc5dcd19434d72eb6a0f83991f Mon Sep 17 00:00:00 2001 From: Javier Degirolmo Date: Fri, 20 Jul 2012 23:17:13 -0300 Subject: Oops, BGM and SFX status are backwards --- c/echo.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/c/echo.h b/c/echo.h index b13abb7..5c737fb 100644 --- a/c/echo.h +++ b/c/echo.h @@ -13,8 +13,8 @@ enum { }; /* Echo status flags */ -#define ECHO_STAT_BGM 0x0001 /* Background music is playing */ -#define ECHO_STAT_SFX 0x0002 /* Sound effect is playing */ +#define ECHO_STAT_BGM 0x0002 /* Background music is playing */ +#define ECHO_STAT_SFX 0x0001 /* Sound effect is playing */ #define ECHO_STAT_BUSY 0x8000 /* Echo still didn't parse command */ /* Function prototypes */ -- cgit v1.2.3