diff options
author | yenatch <yenatch@gmail.com> | 2013-12-28 20:32:05 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-12-28 20:32:05 -0500 |
commit | e937d6f25c18ce91072e96441265537adff5e53f (patch) | |
tree | 01b2758a1e5013960ded1fa77b67c3d825006e2a /macros.asm | |
parent | 36b8a0061e267c7daffae3e4d2dbf063572ffac0 (diff) |
audio: note duration from 0-15 to 1-16 to match pokered
Diffstat (limited to 'macros.asm')
-rw-r--r-- | macros.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros.asm b/macros.asm index 135694883..5497ceec2 100644 --- a/macros.asm +++ b/macros.asm @@ -71,7 +71,7 @@ RGB: MACRO note: MACRO - db \1 << 4 + \2 + db \1 << 4 + (\2 - 1) ENDM ; pitch |