zmusic/thirdparty/opnmidi/chips/np2/fmgen_readme_kai.txt
Wohlstand 72c23d98a3 Update libOPNMIDI library to 1.5.0
## 1.5.0   2020-09-28
 * Drum note length expanding is now supported in real-time mode (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!)
 * Added support for OPNA chip with Neko Project II Kai YM2602 emulator usage (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!)
 * Added VGM file dumper which allows to output OPN2 commands into VGM file. (A new MIDI to VGM tool is now created with basing on libOPNMIDI)
 * Fixed an incorrect work of CC-121 (See https://github.com/Wohlstand/libADLMIDI/issues/227 for details)
 * Internality has been refactored and improved
2020-10-04 08:03:44 +02:00

24 lines
568 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

NP2kai において fmgen 008 へ行った改変. by AZO
1.ファイル名の変更. fmgen_*.*
fmgen.cpp Operator::MakeTable() のインクリメント修正.
[修正前]
*p++ = p[-512] / 2;
[修正後]
//*p++ = p[-512] / 2;
*p = p[-512] / 2;
p++;
3.各クラスのステートセーブ用構造体と、ステートセーブ/ロード実装
struct xxxData : ステートセーブ用構造体
xxx_DataSave() : ステートセーブ
xxx_DataLoad() : ステートロード
C言語用ラッパー fmgen_fmgwrap.cpp/.h
以上.