Skip to content

Commit

Permalink
MSVC / Win32 x86 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcliffe committed Sep 1, 2015
1 parent 45c0eaf commit 3ce569f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
Binary file modified external/msvc/x86/libgcc_s_dw2-1.dll
Binary file not shown.
1 change: 1 addition & 0 deletions src/AppFrame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ AppFrame::AppFrame() :
demodMuteButton->setHighlightColor(RGBA4f(0.8,0.2,0.2));
demodMuteButton->setHelpTip("Demodulator Mute Toggle");
demodMuteButton->setToggleMode(true);
demodMuteButton->setSelection(-1);

demodGainTray->Add(demodMuteButton, 1, wxEXPAND | wxALL, 0);

Expand Down
2 changes: 1 addition & 1 deletion src/demod/DemodulatorMgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

DemodulatorMgr::DemodulatorMgr() :
activeDemodulator(NULL), lastActiveDemodulator(NULL), activeVisualDemodulator(NULL), lastBandwidth(DEFAULT_DEMOD_BW), lastDemodType(
DEFAULT_DEMOD_TYPE), lastSquelchEnabled(false), lastSquelch(0), lastGain(1.0), lastStereo(false) {
DEFAULT_DEMOD_TYPE), lastSquelchEnabled(false), lastSquelch(0), lastGain(1.0), lastStereo(false), lastMuted(false) {

}

Expand Down

0 comments on commit 3ce569f

Please sign in to comment.