Skip to content

Commit f040376

Browse files
author
kumatan
committed
TAG213 2026/01/17
Compiler パート別リプレイスコマンドの修正2つ。 driverにmucomDotNETを指定しているかのチェック追加。 |]直後の文字を読み飛ばしてしまうバグを修正。
1 parent e201170 commit f040376

8 files changed

Lines changed: 10 additions & 5 deletions

File tree

CHANGE.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
�X�V����
2+
TAG213 2026/01/17
3+
Compiler
4+
�p�[�g�ʃ��v���C�X�R�}���h�̏C���Q�B
5+
driver��mucomDotNET���w�肵�Ă��邩�̃`�F�b�N�lj��B
6+
|]����̕�����ǂݔ�΂��Ă��܂��o�O���C���B
27
TAG212 2025/12/23
38
Compiler/Driver
49
�����R�}���h�lj��BIDE���Ŏg�p���邱�ƂŁA�\�����郁�����w��ł��܂��B

Console_NET5/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"profiles": {
33
"Console_NET5": {
44
"commandName": "Project",
5-
"commandLineArgs": "\"D:\\bootcamp\\FM音源\\data\\自作\\mamonoro\\YO-KAI_DiscoCompileTest\\YO-KAI_Disco_DotNET.muc\"",
5+
"commandLineArgs": "\"D:\\bootcamp\\FM音源\\data\\自作\\懐かしき東方の血\\waonTest.muc\"",
66
"nativeDebugging": true
77
}
88
}

Player64/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"profiles": {
33
"Player64": {
44
"commandName": "Project",
5-
"commandLineArgs": "\"D:\\bootcamp\\FM音源\\data\\自作\\muc\\testPartColor.mub\""
5+
"commandLineArgs": "\"D:\\bootcamp\\FM音源\\data\\private\\koshiroSense\\Earthion_MML_PC88\\yzs011.mub\""
66
}
77
}
88
}

Player64/lib/MDSound.dll

0 Bytes
Binary file not shown.

Wav_NET5/MDSound.dll

0 Bytes
Binary file not shown.

mucomDotNETCompiler/muc88.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2051,7 +2051,7 @@ private EnmFCOMPNextRtn SETLPS()
20512051

20522052
char c = mucInfo.srcCPtr < mucInfo.lin.Item2.Length ?
20532053
mucInfo.lin.Item2[mucInfo.srcCPtr] : (char)0;
2054-
if (c == '|')// 0x2c
2054+
if (c == '|' && mucInfo.DriverType == MUCInfo.enmDriverType.DotNet)// 0x2c
20552055
{
20562056
return SetPartReplaceStart();
20572057
}
@@ -5742,7 +5742,7 @@ private EnmFCOMPNextRtn SetPartReplaceEnd()
57425742
}
57435743
if (c == ']')
57445744
{
5745-
mucInfo.srcCPtr++;
5745+
//mucInfo.srcCPtr++;
57465746
work.partReplaceSw = false;
57475747
break;
57485748
}

mucomDotNETConsole/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"profiles": {
33
"Console": {
44
"commandName": "Project",
5-
"commandLineArgs": "-LOGLEVEL=TRACE \"D:\\bootcamp\\FM音源\\data\\自作\\muc\\testPartColor.muc\""
5+
"commandLineArgs": "-LOGLEVEL=TRACE \"D:\\bootcamp\\FM音源\\data\\private\\koshiroSense\\Earthion_MML_PC88\\yzs011.muc\""
66
}
77
}
88
}

mucomDotNETPlayer/lib/MDSound.dll

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)