Skip to content

Commit

Permalink
TAG710 2023/11/25
Browse files Browse the repository at this point in the history
  Core:OPNA2:リズム音源パートでは@ コマンドを無視するよう修正
kumatan committed Nov 25, 2023
1 parent 4f8b9bd commit 2421c64
Showing 3 changed files with 11 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -107,8 +107,9 @@


[注意事項]
SCCIやGIMICを利用した場合でvgmなどのストリーム系の再生は対応しておりません。

・SCCIやGIMICを利用した場合でvgmなどのストリーム系の再生は対応しておりません。
・YM2612やSSGによるPCM再生など、実チップの場合は正確な割り込み処理ができないのでPCMの音がおかしな状態になります。

[著作権・免責]
mml2vgm , mvc , mml2vgmIDEはMITライセンスに準ずる物とします。LICENSE.txtを参照。
著作権は作者が保有しています。
3 changes: 3 additions & 0 deletions mml2vgm/CHANGE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
�X�V����
TAG710 2023/11/25
Core:OPNA2:���Y�������p�[�g�ł�@ �R�}���h�𖳎�����悤�C��

TAG709 2023/11/20
���̑�:mmlCommandTable.md�������e�i���X���{
�ȉ��̃R�}���h�̐�����lj�
5 changes: 5 additions & 0 deletions mml2vgm/Core/chips/YM2609.cs
Original file line number Diff line number Diff line change
@@ -1436,6 +1436,11 @@ public override void CmdPan(partPage page, MML mml)

public override void CmdInstrument(partPage page, MML mml)
{
if(page.Type== enmChannelType.RHYTHM)
{
return;
}

char type;
bool re = false;
int n;

0 comments on commit 2421c64

Please sign in to comment.