Skip to content

Commit 0d21364

Browse files
committed
Fix Camera Clipping: remove 32-bit configuration
1 parent e7cef05 commit 0d21364

2 files changed

Lines changed: 1 addition & 90 deletions

File tree

Games/Fallout 4/Fallout 4.sln

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,20 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 18
4-
VisualStudioVersion = 18.4.11513.90 insiders
4+
VisualStudioVersion = 18.4.11513.90
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FixCameraClipping", "FixCameraClipping\FixCameraClipping.vcxproj", "{3B1FACDC-2FB9-4CE7-ABF7-9F88E9F9501E}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1010
Debug|x64 = Debug|x64
11-
Debug|x86 = Debug|x86
1211
Release|x64 = Release|x64
13-
Release|x86 = Release|x86
1412
EndGlobalSection
1513
GlobalSection(ProjectConfigurationPlatforms) = postSolution
1614
{3B1FACDC-2FB9-4CE7-ABF7-9F88E9F9501E}.Debug|x64.ActiveCfg = Debug|x64
1715
{3B1FACDC-2FB9-4CE7-ABF7-9F88E9F9501E}.Debug|x64.Build.0 = Debug|x64
18-
{3B1FACDC-2FB9-4CE7-ABF7-9F88E9F9501E}.Debug|x86.ActiveCfg = Debug|Win32
19-
{3B1FACDC-2FB9-4CE7-ABF7-9F88E9F9501E}.Debug|x86.Build.0 = Debug|Win32
2016
{3B1FACDC-2FB9-4CE7-ABF7-9F88E9F9501E}.Release|x64.ActiveCfg = Release|x64
2117
{3B1FACDC-2FB9-4CE7-ABF7-9F88E9F9501E}.Release|x64.Build.0 = Release|x64
22-
{3B1FACDC-2FB9-4CE7-ABF7-9F88E9F9501E}.Release|x86.ActiveCfg = Release|Win32
23-
{3B1FACDC-2FB9-4CE7-ABF7-9F88E9F9501E}.Release|x86.Build.0 = Release|Win32
2418
EndGlobalSection
2519
GlobalSection(SolutionProperties) = preSolution
2620
HideSolutionNode = FALSE

Games/Fallout 4/FixCameraClipping/FixCameraClipping.vcxproj

Lines changed: 0 additions & 83 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup Label="ProjectConfigurations">
4-
<ProjectConfiguration Include="Debug|Win32">
5-
<Configuration>Debug</Configuration>
6-
<Platform>Win32</Platform>
7-
</ProjectConfiguration>
84
<ProjectConfiguration Include="Debug|x64">
95
<Configuration>Debug</Configuration>
106
<Platform>x64</Platform>
117
</ProjectConfiguration>
12-
<ProjectConfiguration Include="Release|Win32">
13-
<Configuration>Release</Configuration>
14-
<Platform>Win32</Platform>
15-
</ProjectConfiguration>
168
<ProjectConfiguration Include="Release|x64">
179
<Configuration>Release</Configuration>
1810
<Platform>x64</Platform>
@@ -25,44 +17,23 @@
2517
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
2618
</PropertyGroup>
2719
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
28-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
29-
<ConfigurationType>DynamicLibrary</ConfigurationType>
30-
<UseDebugLibraries>true</UseDebugLibraries>
31-
<PlatformToolset>v145</PlatformToolset>
32-
<CharacterSet>MultiByte</CharacterSet>
33-
</PropertyGroup>
3420
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
3521
<ConfigurationType>DynamicLibrary</ConfigurationType>
3622
<UseDebugLibraries>true</UseDebugLibraries>
3723
<PlatformToolset>v145</PlatformToolset>
3824
<CharacterSet>MultiByte</CharacterSet>
3925
</PropertyGroup>
40-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
41-
<ConfigurationType>DynamicLibrary</ConfigurationType>
42-
<UseDebugLibraries>false</UseDebugLibraries>
43-
<PlatformToolset>v145</PlatformToolset>
44-
<WholeProgramOptimization>true</WholeProgramOptimization>
45-
<CharacterSet>MultiByte</CharacterSet>
46-
</PropertyGroup>
4726
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
4827
<ConfigurationType>DynamicLibrary</ConfigurationType>
4928
<UseDebugLibraries>false</UseDebugLibraries>
5029
<PlatformToolset>v145</PlatformToolset>
5130
<WholeProgramOptimization>true</WholeProgramOptimization>
5231
<CharacterSet>MultiByte</CharacterSet>
5332
</PropertyGroup>
54-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
55-
<OutDir>$(ProjectDir)bin\$(Platform)\$(Configuration)\</OutDir>
56-
<IntDir>$(ProjectDir)obj\$(Platform)\$(Configuration)\</IntDir>
57-
</PropertyGroup>
5833
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
5934
<OutDir>$(ProjectDir)bin\$(Platform)\$(Configuration)\</OutDir>
6035
<IntDir>$(ProjectDir)obj\$(Platform)\$(Configuration)\</IntDir>
6136
</PropertyGroup>
62-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
63-
<OutDir>$(ProjectDir)bin\$(Platform)\$(Configuration)\</OutDir>
64-
<IntDir>$(ProjectDir)obj\$(Platform)\$(Configuration)\</IntDir>
65-
</PropertyGroup>
6637
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
6738
<OutDir>$(ProjectDir)bin\$(Platform)\$(Configuration)\</OutDir>
6839
<IntDir>$(ProjectDir)obj\$(Platform)\$(Configuration)\</IntDir>
@@ -73,41 +44,14 @@
7344
</ImportGroup>
7445
<ImportGroup Label="Shared">
7546
</ImportGroup>
76-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
77-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
78-
</ImportGroup>
7947
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
8048
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
8149
</ImportGroup>
82-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
83-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
84-
</ImportGroup>
8550
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
8651
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
8752
</ImportGroup>
8853
<PropertyGroup Label="UserMacros" />
8954
<PropertyGroup />
90-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
91-
<ClCompile>
92-
<WarningLevel>Level3</WarningLevel>
93-
<Optimization>Disabled</Optimization>
94-
<SDLCheck>true</SDLCheck>
95-
<ConformanceMode>true</ConformanceMode>
96-
<AdditionalIncludeDirectories>$(SolutionDir)Dependencies;$(SolutionDir)Dependencies\Detours\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
97-
<PrecompiledHeader>Use</PrecompiledHeader>
98-
<PrecompiledHeaderFile>Pch.h</PrecompiledHeaderFile>
99-
<ForcedIncludeFiles>Pch.h</ForcedIncludeFiles>
100-
<LanguageStandard>stdcpp20</LanguageStandard>
101-
</ClCompile>
102-
<Link>
103-
<SubSystem>Console</SubSystem>
104-
<AdditionalDependencies>detours.lib;syelog.lib;%(AdditionalDependencies)</AdditionalDependencies>
105-
<AdditionalLibraryDirectories>$(SolutionDir)Dependencies\Detours\lib\x86</AdditionalLibraryDirectories>
106-
</Link>
107-
<PostBuildEvent>
108-
<Command>copy /Y "$(MSBuildProjectDirectory)\Mod.ini" "$(MSBuildProjectDirectory)\bin\$(Platform)\$(Configuration)\mod.ini"</Command>
109-
</PostBuildEvent>
110-
</ItemDefinitionGroup>
11155
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
11256
<ClCompile>
11357
<WarningLevel>Level3</WarningLevel>
@@ -134,31 +78,6 @@
13478
<IncludePaths>$(SolutionDir)Dependencies</IncludePaths>
13579
</MASM>
13680
</ItemDefinitionGroup>
137-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
138-
<ClCompile>
139-
<WarningLevel>Level3</WarningLevel>
140-
<Optimization>MaxSpeed</Optimization>
141-
<FunctionLevelLinking>true</FunctionLevelLinking>
142-
<IntrinsicFunctions>true</IntrinsicFunctions>
143-
<SDLCheck>true</SDLCheck>
144-
<ConformanceMode>true</ConformanceMode>
145-
<AdditionalIncludeDirectories>$(SolutionDir)Dependencies;$(SolutionDir)Dependencies\Detours\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
146-
<PrecompiledHeader>Use</PrecompiledHeader>
147-
<PrecompiledHeaderFile>Pch.h</PrecompiledHeaderFile>
148-
<ForcedIncludeFiles>Pch.h</ForcedIncludeFiles>
149-
<LanguageStandard>stdcpp20</LanguageStandard>
150-
</ClCompile>
151-
<Link>
152-
<SubSystem>Console</SubSystem>
153-
<EnableCOMDATFolding>true</EnableCOMDATFolding>
154-
<OptimizeReferences>true</OptimizeReferences>
155-
<AdditionalDependencies>detours.lib;syelog.lib;%(AdditionalDependencies)</AdditionalDependencies>
156-
<AdditionalLibraryDirectories>$(SolutionDir)Dependencies\Detours\lib\x86</AdditionalLibraryDirectories>
157-
</Link>
158-
<PostBuildEvent>
159-
<Command>copy /Y "$(MSBuildProjectDirectory)\Mod.ini" "$(MSBuildProjectDirectory)\bin\$(Platform)\$(Configuration)\mod.ini"</Command>
160-
</PostBuildEvent>
161-
</ItemDefinitionGroup>
16281
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
16382
<ClCompile>
16483
<WarningLevel>Level3</WarningLevel>
@@ -197,9 +116,7 @@
197116
<ItemGroup>
198117
<ClCompile Include="DllMain.cpp" />
199118
<ClCompile Include="Pch.cpp">
200-
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
201119
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader>
202-
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
203120
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
204121
</ClCompile>
205122
</ItemGroup>

0 commit comments

Comments
 (0)