Skip to content

Commit

Permalink
ルール設定画面の見出しが一部空欄になるのを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
MihailJP committed Nov 9, 2021
1 parent 290eaa4 commit d102743
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions doc/history.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Copyright (c) 2008-2013, 2019-2020 MihailJP
### [2.4.2] 2021年11月9日

- Ver2.4.xでデータが正しく初期化されていなかったのを修正
- ルール設定画面のページ見出しが一部空欄になるのを修正

### [2.4.1] 2021年11月9日

Expand Down
4 changes: 3 additions & 1 deletion mjcore/confitms.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ CONFDAT_TEMPLATE void CONFDAT_CLASS::configinit_csv(Compressed::Data* csvfile) {

if ((k[1].empty()) || (GameStat.chkGameType(static_cast<GameTypeID>(_ttoi(k[1].c_str()))))) { // GameType合致した場合
if ((_ttoi(k[0].c_str()) % PageBatch) == 0)
pageCaption[_ttoi(k[0].c_str()) / PageBatch] = tstring(k[4]);
pageCaption[_ttoi(k[0].c_str()) / PageBatch] = tstring(k[4]); // ページ名
ruletags[nomenPartisRegulae].clear(); inverse_ruletags[nomenPartisRegulae].clear();
for (unsigned int index = 11; index < k.size(); ++index) {
/*if (k[index] == _T(">>>")) { // 飛ばすように指定されているなら
Expand All @@ -147,6 +147,8 @@ CONFDAT_TEMPLATE void CONFDAT_CLASS::configinit_csv(Compressed::Data* csvfile) {
}
else if ((!k[1].empty()) && (GameStat.chkGameType(static_cast<GameTypeID>(_ttoi(k[2].c_str()))))) { // N/A指定があった場合
nonapplicable.insert(nomenPartisRegulae); // リストに追加
if ((_ttoi(k[0].c_str()) % PageBatch) == 0)
pageCaption[_ttoi(k[0].c_str()) / PageBatch] = tstring(k[4]); // ページ名
}

// ルール設定画面のマスクデータ
Expand Down

0 comments on commit d102743

Please sign in to comment.