From 50b7f33117e53e1f6a38a8aa8fa2c5c196bbec5c Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Wed, 15 Apr 2009 20:11:53 +0000 Subject: [PATCH] Don't initalise favorite to 0 (it's a a wxString). Originally committed to SVN as r2799. --- aegisub/src/audio_player_portaudio2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/audio_player_portaudio2.h b/aegisub/src/audio_player_portaudio2.h index c7f049bf9..94127a408 100644 --- a/aegisub/src/audio_player_portaudio2.h +++ b/aegisub/src/audio_player_portaudio2.h @@ -95,7 +95,7 @@ public: void SetVolume(double vol) { volume = vol; } double GetVolume() { return volume; } - wxArrayString GetOutputDevices(wxString favorite=0); + wxArrayString GetOutputDevices(wxString favorite); wxMutex *GetMutex() { return &PAMutex; } };