mirror of
https://github.com/ZDoom/ZMusic.git
synced 2024-12-11 13:00:53 +00:00
72c23d98a3
## 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
24 lines
568 B
Text
24 lines
568 B
Text
NP2kai において fmgen 008 へ行った改変. by AZO
|
||
|
||
1.ファイル名の変更. (fmgen_*.*)
|
||
|
||
2.fmgen.cpp Operator::MakeTable() のインクリメント修正.
|
||
|
||
[修正前]
|
||
*p++ = p[-512] / 2;
|
||
|
||
[修正後]
|
||
//*p++ = p[-512] / 2;
|
||
*p = p[-512] / 2;
|
||
p++;
|
||
|
||
3.各クラスのステートセーブ用構造体と、ステートセーブ/ロード実装
|
||
|
||
struct xxxData : ステートセーブ用構造体
|
||
|
||
xxx_DataSave() : ステートセーブ
|
||
xxx_DataLoad() : ステートロード
|
||
|
||
4.C言語用ラッパー fmgen_fmgwrap.cpp/.h
|
||
|
||
以上.
|