Skip to content

Commit

Permalink
サクラ本体以外のフォルダに配置したMMLのコンパイルに失敗する問題を修正。
Browse files Browse the repository at this point in the history
  • Loading branch information
kujirahand committed Aug 7, 2022
1 parent ebf49cd commit ed7eb09
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions history.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
���e�L�X�g���y�u�T�N���v�̍X�V����

��2022/08/08 ver.2.383
�E�T�N���{�̈ȊO�̃t�H���_�ɔz�u����MML�̃R���p�C���Ɏ��s��������C���B

��2022/08/07 ver.2.382
�E�e���v���[�g�̕\�����p��ɂȂ��Ă����̂œ��{��ŕ\�������悤�ɏC���B
�EWindows11�œ����悤�ɃC���X�g�[���[�̖����C���B
Expand Down
2 changes: 1 addition & 1 deletion mml_base.pas
Original file line number Diff line number Diff line change
Expand Up @@ -4670,7 +4670,7 @@ function TMmlBase.scriptInclude(var sp: TSrcPos): TMVarCustom;
AppPath := ExtractFilePath( ParamStr(0) );
s := AppPath + fname;
if FileExists(s) then begin Result := True; Exit; end;
s := AppPath + 'Include' + fname;
s := AppPath + 'Include' + PATH_FLAG + fname;
if FileExists(s) then begin Result := True; Exit; end;

// CurDir を検索
Expand Down

0 comments on commit ed7eb09

Please sign in to comment.