Merge branch 'master' of https://github.com/tildearrow/furnace into sample_macro

This commit is contained in:
cam900 2022-09-23 14:09:36 +09:00
commit e03bab7d1c
2 changed files with 3 additions and 1 deletions

View file

@ -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 - Nintendo covers are frowned upon
- big label music covers also are discouraged - 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! thank you for contributing!

View file

@ -122,7 +122,7 @@ void x1_010_core::voice_t::reg_w(u8 offset, u8 data)
m_flag.write(data); m_flag.write(data);
if (!prev_keyon && m_flag.keyon()) // Key on 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; m_env_acc = 0;
} }
break; break;