Skip to content

Commit

Permalink
Update PlayerDoc.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
aliakseis committed May 25, 2024
1 parent 218c9d6 commit cc72983
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Player/PlayerDoc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1595,13 +1595,13 @@ void CPlayerDoc::OnConvertVideosIntoCompatibleFormat()

CFolderPickerDialog dlg;
if (IDOK != dlg.DoModal()
|| IDOK != AfxMessageBox(_T("Destination: ") +
|| IDYES != AfxMessageBox(_T("Destination: ") +
NoBreak(dlg.GetPathName()) + _T("\nOptions:") +
StrikeThrough(_T(" Multiple,"), !m_autoPlay) +
(m_autoPlay ? StrikeThrough(_T(" Preceding,"), !m_looping) : _T("")) +
StrikeThrough(_T(" Separate Audio Files,"), !m_separateFileDiff) +
StrikeThrough(_T(" Separate Subtitles"), !m_subtitlesFileDiff) + _T("\n\nConvert files?"),
MB_OKCANCEL | MB_ICONQUESTION))
MB_YESNO | MB_ICONQUESTION))
{
CloseHandle(scriptFileHandle);
return;
Expand Down

0 comments on commit cc72983

Please sign in to comment.