mirror of https://github.com/stella-emu/stella.git
Merge branch 'master' of https://github.com/stella-emu/stella
This commit is contained in:
commit
acbe9b2677
|
@ -395,10 +395,9 @@ else ifneq (,$(findstring windows_msvc2017,$(platform)))
|
|||
PATH := $(shell IFS=$$'\n'; cygpath "$(VCCompilerToolsBinDir)/$(TargetArchMoniker)"):$(PATH)
|
||||
PATH := $(PATH):$(shell IFS=$$'\n'; cygpath "$(VsInstallRoot)/Common7/IDE")
|
||||
INCLUDE := $(shell IFS=$$'\n'; cygpath -w "$(VcCompilerToolsDir)/include")
|
||||
LIB := $(shell IFS=$$'\n'; cygpath -w "$(VcCompilerToolsDir)/lib/$(TargetArchMoniker)")
|
||||
ifneq (,$(findstring uwp,$(PlatformSuffix)))
|
||||
LIB := $(shell IFS=$$'\n'; cygpath -w "$(VcCompilerToolsDir)/lib/$(TargetArchMoniker/store)")
|
||||
else
|
||||
LIB := $(shell IFS=$$'\n'; cygpath -w "$(VcCompilerToolsDir)/lib/$(TargetArchMoniker)")
|
||||
LIB := $(shell IFS=$$'\n'; cygpath -w "$(LIB)/store")
|
||||
endif
|
||||
|
||||
export INCLUDE := $(INCLUDE);$(WindowsSDKSharedIncludeDir);$(WindowsSDKUCRTIncludeDir);$(WindowsSDKUMIncludeDir)
|
||||
|
|
|
@ -157,7 +157,6 @@
|
|||
<ClCompile Include="..\common\RewindManager.cxx" />
|
||||
<ClCompile Include="..\common\StaggeredLogger.cxx" />
|
||||
<ClCompile Include="..\common\StateManager.cxx" />
|
||||
<ClCompile Include="..\common\ThreadDebugging.cxx" />
|
||||
<ClCompile Include="..\common\TimerManager.cxx" />
|
||||
<ClCompile Include="..\common\repository\KeyValueRepositoryConfigfile.cxx" />
|
||||
<ClCompile Include="..\common\tv_filters\AtariNTSC.cxx" />
|
||||
|
@ -281,7 +280,6 @@
|
|||
<ClInclude Include="..\common\StateManager.hxx" />
|
||||
<ClInclude Include="..\common\StellaKeys.hxx" />
|
||||
<ClInclude Include="..\common\StringParser.hxx" />
|
||||
<ClInclude Include="..\common\ThreadDebugging.hxx" />
|
||||
<ClInclude Include="..\common\TimerManager.hxx" />
|
||||
<ClInclude Include="..\common\tv_filters\AtariNTSC.hxx" />
|
||||
<ClInclude Include="..\common\tv_filters\NTSCFilter.hxx" />
|
||||
|
@ -414,4 +412,4 @@
|
|||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
</Project>
|
|
@ -284,7 +284,7 @@ float StellaLIBRETRO::getVideoAspectPar()
|
|||
else
|
||||
par = video_aspect_pal / 100.0;
|
||||
}
|
||||
|
||||
|
||||
return par;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue