Make MSVC2003 optimise Font.cpp, and enable more warnings

Font.cpp wasn't a part of the original source code, so we don't need to
leave it unoptimised for accuracy. The font renderer is pretty
performance-intensive right now, so the optimisation should help with
that a little.
This commit is contained in:
Clownacy 2019-03-11 03:22:27 +00:00
parent cecc3ce966
commit c7f5cb71e0

View file

@ -28,6 +28,7 @@
RuntimeLibrary="1"
AssemblerOutput="4"
WarningLevel="3"
Detect64BitPortabilityProblems="TRUE"
DebugInformationFormat="3"/>
<Tool
Name="VCCustomBuildTool"/>
@ -78,6 +79,7 @@
RuntimeLibrary="0"
AssemblerOutput="4"
WarningLevel="3"
Detect64BitPortabilityProblems="TRUE"
DebugInformationFormat="3"/>
<Tool
Name="VCCustomBuildTool"/>
@ -127,6 +129,7 @@
RuntimeLibrary="0"
AssemblerOutput="4"
WarningLevel="3"
Detect64BitPortabilityProblems="TRUE"
DebugInformationFormat="3"/>
<Tool
Name="VCCustomBuildTool"/>
@ -177,6 +180,7 @@
RuntimeLibrary="1"
AssemblerOutput="4"
WarningLevel="3"
Detect64BitPortabilityProblems="TRUE"
DebugInformationFormat="3"/>
<Tool
Name="VCCustomBuildTool"/>
@ -293,6 +297,18 @@
</File>
<File
RelativePath="..\src\Font.cpp">
<FileConfiguration
Name="Release|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="3"/>
</FileConfiguration>
<FileConfiguration
Name="Release (Japanese)|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="3"/>
</FileConfiguration>
</File>
<File
RelativePath="..\src\Frame.cpp">