From 0569af91037c894bc792238c587e38c93ba1ec52 Mon Sep 17 00:00:00 2001 From: nicco1690 <78063037+nicco1690@users.noreply.github.com> Date: Wed, 21 Sep 2022 14:18:12 -0400 Subject: [PATCH 1/3] DMF demo song submission reminder --- demos/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/demos/README.md b/demos/README.md index ea3ef883e..43f29d793 100644 --- a/demos/README.md +++ b/demos/README.md @@ -11,4 +11,6 @@ contact me or send a pull request if you want your song to be added to this coll - Nintendo covers are frowned upon - big label music covers also are discouraged +tildearrow also accepts demo songs in the .DMF format as well as the .FUR format. + thank you for contributing! From 3eb37ded072b90c91e8b3f344bc7b63e52394fd3 Mon Sep 17 00:00:00 2001 From: nicco1690 <78063037+nicco1690@users.noreply.github.com> Date: Thu, 22 Sep 2022 22:28:09 -0400 Subject: [PATCH 2/3] Change extension names to be lower-case --- demos/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/README.md b/demos/README.md index 43f29d793..d07738e58 100644 --- a/demos/README.md +++ b/demos/README.md @@ -11,6 +11,6 @@ contact me or send a pull request if you want your song to be added to this coll - Nintendo covers are frowned upon - big label music covers also are discouraged -tildearrow also accepts demo songs in the .DMF format as well as the .FUR format. +tildearrow also accepts demo songs in the .dmf format as well as the .fur format. thank you for contributing! From 12d55ad99dcafb50ad3e2980aa58b3b278480635 Mon Sep 17 00:00:00 2001 From: cam900 Date: Fri, 23 Sep 2022 13:50:46 +0900 Subject: [PATCH 3/3] Fix regression --- extern/vgsound_emu-modified/vgsound_emu/src/x1_010/x1_010.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extern/vgsound_emu-modified/vgsound_emu/src/x1_010/x1_010.cpp b/extern/vgsound_emu-modified/vgsound_emu/src/x1_010/x1_010.cpp index c249e5548..23b7df72b 100644 --- a/extern/vgsound_emu-modified/vgsound_emu/src/x1_010/x1_010.cpp +++ b/extern/vgsound_emu-modified/vgsound_emu/src/x1_010/x1_010.cpp @@ -122,7 +122,7 @@ void x1_010_core::voice_t::reg_w(u8 offset, u8 data) m_flag.write(data); if (!prev_keyon && m_flag.keyon()) // Key on { - m_acc = m_flag.wavetable() ? 0 : (u32(m_start_envfreq) << 16); + m_acc = m_flag.wavetable() ? 0 : (u32(m_start_envfreq) << 17); m_env_acc = 0; } break;