1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 17:30:17 +01:00

Fix some MSVC warnings.

This commit is contained in:
James Crook
2018-03-02 12:02:23 +00:00
parent 29b214367d
commit 6509947de8
4 changed files with 6 additions and 31 deletions

View File

@@ -1872,7 +1872,7 @@ int AudioIO::StartStream(const WaveTrackConstArray &playbackTracks,
mLostSamples = 0;
mLostCaptureIntervals.clear();
mDetectDropouts =
gPrefs->Read( WarningDialogKey(wxT("DropoutDetected")), (long)true );
gPrefs->Read( WarningDialogKey(wxT("DropoutDetected")), true ) != 0;
auto cleanup = finally ( [this] { ClearRecordingException(); } );
if( IsBusy() )