Skip to content

Commit

Permalink
Fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
axynos committed Oct 5, 2016
1 parent 3965306 commit eecb869
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
Binary file modified .vs/STARK/v14/.suo
Binary file not shown.
2 changes: 1 addition & 1 deletion STARK/AudioPlaybackEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ public void Pause() {

public void Resume() {
if (paused) {
paused = false;
Play("", fileVolume);
paused = false;
}
}

Expand Down
2 changes: 1 addition & 1 deletion STARK/CommandReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ private void parseCommand(string line) {
}

private void StartReadLoop() {
loop = new Timer(100);
loop = new Timer(50);
loop.AutoReset = false;
loop.Elapsed += Loop_Elapsed;
loop.Start();
Expand Down
4 changes: 2 additions & 2 deletions STARK/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ public MainWindow() {
InitializeMicrophone(ref wiMicrophone, Setup_Microphone.SelectedIndex, 25, 100);

//latency has to be >= 100
InitializeOutput(ref woStandard, Setup_OutputCombined.SelectedIndex, (int)Audio_OutputVolumeSlider.Value, ref mspStandard);
InitializeOutput(ref woLoopback, Setup_SynthesizerOnly.SelectedIndex, (int)Audio_LoopbackVolumeSlider.Value, ref mspLoopback);
InitializeOutput(ref woStandard, Setup_OutputCombined.SelectedIndex, 25, ref mspStandard);
InitializeOutput(ref woLoopback, Setup_SynthesizerOnly.SelectedIndex, 25, ref mspLoopback);

changeMicrophone(Setup_Microphone.SelectedIndex);
changeCombinedOutput(Setup_OutputCombined.SelectedIndex);
Expand Down
Binary file modified STARK/bin/Debug/STARK.exe
Binary file not shown.
Binary file modified STARK/bin/Debug/STARK.pdb
Binary file not shown.
Binary file modified STARK/obj/Debug/STARK.exe
Binary file not shown.
Binary file modified STARK/obj/Debug/STARK.pdb
Binary file not shown.

0 comments on commit eecb869

Please sign in to comment.