Skip to content

Commit

Permalink
TAG003 2020/05/02 2nd
Browse files Browse the repository at this point in the history
  Compiler
    ・FFファイルが読み込めなくてもコンパイルが進むように修正
  • Loading branch information
kumatan committed May 2, 2020
1 parent 7c92d31 commit 0995b73
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGE.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
�X�V����

TAG003 2020/05/02 2nd
Compiler
�EFF�t�@�C�����ǂݍ��߂Ȃ��Ă��R���p�C�����i�ނ悤�ɏC��

TAG002 2020/05/02
Compiler
�E���Y�������n�R�}���h�����̃o�O���C��
Expand Down
2 changes: 2 additions & 0 deletions PMDDotNETCompiler/mc.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1821,6 +1821,7 @@ private void read_fffile()
}
catch
{
if (voice_seg.voice_buf == null) voice_seg.voice_buf = new byte[8192];
print_mes(mml_seg.warning_mes);
print_mes(mml_seg.ff_readerr_mes);
return;
Expand All @@ -1829,6 +1830,7 @@ private void read_fffile()
#if !hyouka
mml_seg.prg_flg |= 1;
#endif
if (voice_seg.voice_buf == null) voice_seg.voice_buf = new byte[8192];
}


Expand Down
12 changes: 11 additions & 1 deletion PMDDotNETDriver/PW.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace PMDDotNET.Driver
{
public class PW
{
public string ver = "4.8q";
public const string ver = "4.8q";
public int vers = 0x48;
public string verc = "q";
public string date = "Aug.5th 1998";
Expand All @@ -18,5 +18,15 @@ public class PW

public string _myname = "PMD COM";

public int va = 0;//1の時VAMSDOS用
public int board2 = 0;//1の時ボード2/音美ちゃん有り
public int adpcm = 0;//1の時ADPCM使用
public int ademu = 0;//1の時ADPCM Emulate
public int pcm = 0;//1の時PCM使用
public int ppz = 0;//1の時PPZ8使用
public int sync = 0;//1の時MIDISYNC使用
public int vsync = 0;//1の時VSyncを止める
public string resmes = "PMD ver." + ver;

}
}

0 comments on commit 0995b73

Please sign in to comment.