Skip to content

Commit

Permalink
TAG017 2020/05/04 3rd
Browse files Browse the repository at this point in the history
  Compiler
    ・qコマンドの第2引数の指定をすると発生する不具合の修正
  • Loading branch information
kumatan committed May 4, 2020
1 parent 9e2e73c commit 51c013d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ PMDDotNETDriver/bin/
PMDDotNETDriver/obj/
PMDDotNETPlayer/bin/
PMDDotNETPlayer/obj/
packages/
4 changes: 4 additions & 0 deletions CHANGE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
�X�V����
TAG017 2020/05/04 3rd
Compiler
�Eq�R�}���h�̑�Q�����̎w�������Ɣ�������s��̏C��

TAG016 2020/05/04 2nd
Compiler
�E���U�a�������ɓ˓����锻����~�X���Ă����̂��C��
Expand Down
2 changes: 1 addition & 1 deletion PMDDotNETCompiler/mc.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6962,7 +6962,7 @@ private enmPass2JumpTable qset()
work.si++;
work.dx = ((byte)'q') * 0x100 + (byte)work.dx;
get_clock();
work.dx = work.al + (byte)(work.dx >> 8) * 0x100;
work.dx = 0xb300 + work.al;
return enmPass2JumpTable.parset;
}

Expand Down

0 comments on commit 51c013d

Please sign in to comment.