mirror of https://github.com/stella-emu/stella.git
Updated VS project for resampling work, and fixed minor compile error in
Windows.
This commit is contained in:
parent
33db8a8b03
commit
d624140829
|
@ -16,6 +16,9 @@
|
|||
//============================================================================
|
||||
|
||||
#include <cmath>
|
||||
#ifndef M_PI
|
||||
#define M_PI 3.14159265358979323846f
|
||||
#endif
|
||||
|
||||
#include "LanczosResampler.hxx"
|
||||
|
||||
|
|
|
@ -229,6 +229,8 @@
|
|||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common\AudioQueue.cxx" />
|
||||
<ClCompile Include="..\common\audio\ConvolutionBuffer.cxx" />
|
||||
<ClCompile Include="..\common\audio\LanczosResampler.cxx" />
|
||||
<ClCompile Include="..\common\audio\SimpleResampler.cxx" />
|
||||
<ClCompile Include="..\common\Base.cxx" />
|
||||
<ClCompile Include="..\common\EventHandlerSDL2.cxx" />
|
||||
|
@ -516,6 +518,8 @@
|
|||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common\AudioQueue.hxx" />
|
||||
<ClInclude Include="..\common\audio\ConvolutionBuffer.hxx" />
|
||||
<ClInclude Include="..\common\audio\LanczosResampler.hxx" />
|
||||
<ClInclude Include="..\common\audio\Resampler.hxx" />
|
||||
<ClInclude Include="..\common\audio\SimpleResampler.hxx" />
|
||||
<ClInclude Include="..\common\Base.hxx" />
|
||||
|
|
|
@ -918,6 +918,12 @@
|
|||
<ClCompile Include="..\common\audio\SimpleResampler.cxx">
|
||||
<Filter>Source Files\audio</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common\audio\ConvolutionBuffer.cxx">
|
||||
<Filter>Source Files\audio</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common\audio\LanczosResampler.cxx">
|
||||
<Filter>Source Files\audio</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common\bspf.hxx">
|
||||
|
@ -1877,6 +1883,12 @@
|
|||
<ClInclude Include="..\common\audio\SimpleResampler.hxx">
|
||||
<Filter>Header Files\audio</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common\audio\ConvolutionBuffer.hxx">
|
||||
<Filter>Header Files\audio</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common\audio\LanczosResampler.hxx">
|
||||
<Filter>Header Files\audio</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="stella.ico">
|
||||
|
|
Loading…
Reference in New Issue