Skip to content

Commit

Permalink
TAG758 2024/12/17
Browse files Browse the repository at this point in the history
  Core:パート指定が不正な場合、例外がでて動作が不安定になっていたのを修正。(警告として扱い、その行は無視します。)
  • Loading branch information
kumatan committed Dec 17, 2024
1 parent 4c0962f commit 9d07c3a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
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����
TAG758 2024/12/17
Core:�p�[�g�w�肪�s���ȏꍇ�A��O���łē��삪�s����ɂȂ��Ă����̂��C���B(�x���Ƃ��Ĉ����A���̍s�͖������܂��B)

TAG757 2024/12/10
Core:PartCounter:memo����bug�C��

Expand Down
1 change: 1 addition & 0 deletions mml2vgm/Corex64/Common.cs
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ public static List<string> DivParts(string parts, Dictionary<enmChipType, ClsChi
n0 = n;

if (!int.TryParse(n0, out int s)) return null;
if (string.IsNullOrEmpty(a)) return null;
string p = string.Format("{0}{1:00}", a, s);
ret.Add(p);
}
Expand Down

0 comments on commit 9d07c3a

Please sign in to comment.