mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-27 14:32:08 +00:00
- Removed the patches for the Doom/Heretic E1 intermission screens from
R_InitPatches. This isn't needed anymore because all these are loaded through an intermission script. - Fixed: A_SpawnDebris read the third and fourth arguments from the first one's address. SVN r664 (trunk)
This commit is contained in:
parent
5cbb2bd472
commit
aa90336765
4 changed files with 86 additions and 116 deletions
|
@ -1,3 +1,10 @@
|
|||
January 4, 2008 (Changes by Graf Zahl)
|
||||
- Removed the patches for the Doom/Heretic E1 intermission screens from
|
||||
R_InitPatches. This isn't needed anymore because all these are loaded through
|
||||
an intermission script.
|
||||
- Fixed: A_SpawnDebris read the third and fourth arguments from the first one's
|
||||
address.
|
||||
|
||||
January 3, 2008
|
||||
- Moved the pixel shaders' color information out of the constant registers
|
||||
and into the vertex data.
|
||||
|
|
|
@ -1106,15 +1106,6 @@ static void R_InitPatches ()
|
|||
"M_EPI2",
|
||||
"M_EPI3",
|
||||
"M_EPI4",
|
||||
"MAPE1",
|
||||
"MAPE2",
|
||||
"MAPE3",
|
||||
"WIMAP0",
|
||||
"WIURH0",
|
||||
"WIURH1",
|
||||
"WISPLAT",
|
||||
"WIMAP1",
|
||||
"WIMAP2",
|
||||
"INTERPIC",
|
||||
"WIOSTK",
|
||||
"WIOSTI",
|
||||
|
@ -1234,34 +1225,6 @@ static void R_InitPatches ()
|
|||
}
|
||||
}
|
||||
|
||||
// Animating overlays for the Doom E1 map
|
||||
for (i = 9; i >= 0; --i)
|
||||
{
|
||||
for (j = (i == 6) ? 3 : 2; j >= 0; --j)
|
||||
{
|
||||
sprintf (name, "WIA0%.2d%.2d", i, j);
|
||||
TexMan.AddPatch (name);
|
||||
}
|
||||
}
|
||||
// Animating overlays for the Doom E2 map
|
||||
for (i = 7; i >= 0; --i)
|
||||
{
|
||||
for (j = (i == 7) ? 2 : 0; j >= 0; --j)
|
||||
{
|
||||
sprintf (name, "WIA1%.2d%.2d", i, j);
|
||||
TexMan.AddPatch (name);
|
||||
}
|
||||
}
|
||||
// Animating overlays for the Doom E3 map
|
||||
for (i = 5; i >= 0; --i)
|
||||
{
|
||||
for (j = 2; j >= 0; --j)
|
||||
{
|
||||
sprintf (name, "WIA2%.2d%.2d", i, j);
|
||||
TexMan.AddPatch (name);
|
||||
}
|
||||
}
|
||||
|
||||
// Player class animations for the Hexen new game menu
|
||||
for (i = 2; i >= 0; --i)
|
||||
{
|
||||
|
|
|
@ -1769,8 +1769,8 @@ void A_SpawnDebris(AActor * self)
|
|||
if (debris == NULL) return;
|
||||
|
||||
INTBOOL transfer_translation = EvalExpressionI (StateParameters[index+1], self);
|
||||
fixed_t mult_h = fixed_t(EvalExpressionF (StateParameters[index], self) * FRACUNIT);
|
||||
fixed_t mult_v = fixed_t(EvalExpressionF (StateParameters[index], self) * FRACUNIT);
|
||||
fixed_t mult_h = fixed_t(EvalExpressionF (StateParameters[index+2], self) * FRACUNIT);
|
||||
fixed_t mult_v = fixed_t(EvalExpressionF (StateParameters[index+3], self) * FRACUNIT);
|
||||
|
||||
// only positive values make sense here
|
||||
if (mult_v<=0) mult_v=FRACUNIT;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8.00"
|
||||
Version="8,00"
|
||||
Name="updaterevision"
|
||||
ProjectGUID="{6077B7D6-349F-4077-B552-3BC302EF5859}"
|
||||
RootNamespace="updaterevision"
|
||||
|
@ -95,82 +95,6 @@
|
|||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Debug|x64"
|
||||
OutputDirectory="$(SolutionDir)$(PlatformName)\$(ConfigurationName)"
|
||||
IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="1"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TargetEnvironment="3"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||
MinimalRebuild="true"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
DebugInformationFormat="3"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkIncremental="2"
|
||||
GenerateDebugInformation="true"
|
||||
SubSystem="1"
|
||||
TargetMachine="17"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||
|
@ -248,6 +172,82 @@
|
|||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Debug|x64"
|
||||
OutputDirectory="$(SolutionDir)$(PlatformName)\$(ConfigurationName)"
|
||||
IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="1"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
TargetEnvironment="3"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||
MinimalRebuild="true"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
DebugInformationFormat="3"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkIncremental="2"
|
||||
GenerateDebugInformation="true"
|
||||
SubSystem="1"
|
||||
TargetMachine="17"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|x64"
|
||||
OutputDirectory="$(SolutionDir)$(PlatformName)\$(ConfigurationName)"
|
||||
|
|
Loading…
Reference in a new issue