Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/mincequi/scream
Browse files Browse the repository at this point in the history
  • Loading branch information
mincequi committed May 6, 2020
2 parents dc41070 + c257d6b commit cad9c9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Scream/Scream.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<Configuration>Win8.1 Debug</Configuration>
<Platform Condition="'$(Platform)' == ''">Win32</Platform>
<RootNamespace>Scream</RootNamespace>
<WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
<WindowsTargetPlatformVersion>10.0.18362.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win8.1 Debug|Win32'" Label="Configuration">
Expand Down
2 changes: 1 addition & 1 deletion TestSender/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ void MainWindow::on_sendIntervalSlider_valueChanged(int value)
void MainWindow::onTimeout()
{
static uint32_t i = 0;
std::array<int16_t, 1536*2-16> samples;
std::array<int16_t, 1536*2> samples;
for (size_t j = 0; j < samples.size(); j += 2) {
samples[j] = 16384*sin(m_testFrequency * 2 * M_PI * ++i / m_samplerate);
samples[j+1] = samples[j];
Expand Down

0 comments on commit cad9c9f

Please sign in to comment.