Skip to content

Commit

Permalink
Change str to wstr
Browse files Browse the repository at this point in the history
  • Loading branch information
starg2 committed Aug 1, 2020
1 parent 24c618a commit 724a282
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interface/w32g_subwin.c
Original file line number Diff line number Diff line change
Expand Up @@ -2497,9 +2497,9 @@ ListSearchWndProc(HWND hwnd, UINT uMess, WPARAM wParam, LPARAM lParam)
ListSearchContinue = FALSE;

if (PlayerLanguage == LANGUAGE_JAPANESE) {
MessageBox(hwnd, "一致する項目が見つかりません", "プレイリストの検索", MB_ICONINFORMATION);
MessageBox(hwnd, _T("一致する項目が見つかりません"), _T("プレイリストの検索"), MB_ICONINFORMATION);
} else {
MessageBox(hwnd, "No matches found.", "Playlist Search", MB_ICONINFORMATION);
MessageBox(hwnd, _T("No matches found."), _T("Playlist Search"), MB_ICONINFORMATION);
}
}
}
Expand Down

0 comments on commit 724a282

Please sign in to comment.