diff options
| author | Javier Degirolmo | 2012-07-20 23:17:13 -0300 |
|---|---|---|
| committer | Javier Degirolmo | 2012-07-20 23:17:13 -0300 |
| commit | 9a9d29234d1591dc5dcd19434d72eb6a0f83991f (patch) | |
| tree | c3d884f79f07cfc2437a8cc35e96921e23851a08 /c | |
| parent | 91b9bde87fa4510c7cc2d55b5b369ebb6bb4c4c4 (diff) | |
Oops, BGM and SFX status are backwards
Diffstat (limited to 'c')
| -rw-r--r-- | c/echo.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 */ |
