aboutsummaryrefslogtreecommitdiff
path: root/c/echo.h
diff options
context:
space:
mode:
authorJavier Degirolmo2012-07-20 23:17:13 -0300
committerJavier Degirolmo2012-07-20 23:17:13 -0300
commit9a9d29234d1591dc5dcd19434d72eb6a0f83991f (patch)
treec3d884f79f07cfc2437a8cc35e96921e23851a08 /c/echo.h
parent91b9bde87fa4510c7cc2d55b5b369ebb6bb4c4c4 (diff)
Oops, BGM and SFX status are backwards
Diffstat (limited to 'c/echo.h')
-rw-r--r--c/echo.h4
1 files 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 */