mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-06 01:15:54 +00:00
fix mailbox particle
This commit is contained in:
parent
08f0f275af
commit
78f4e8fdca
|
@ -50,6 +50,8 @@
|
|||
|
||||
#define MAX_RAINDRIP_FILES (2)
|
||||
|
||||
#define MAX_LEAF_FILES (2)
|
||||
|
||||
|
||||
const char SmokeFiles[][6+1] =
|
||||
{
|
||||
|
@ -166,7 +168,7 @@ RwTexture *gpFlame1Tex;
|
|||
RwTexture *gpFlame5Tex;
|
||||
RwTexture *gpRainDropSmallTex;
|
||||
RwTexture *gpBloodTex;
|
||||
RwTexture *gpLeafTex;
|
||||
RwTexture *gpLeafTex[MAX_LEAF_FILES];
|
||||
RwTexture *gpCloudTex1;
|
||||
RwTexture *gpCloudTex4;
|
||||
RwTexture *gpBloodSmallTex;
|
||||
|
@ -194,7 +196,7 @@ RwRaster *gpFlame1Raster;
|
|||
RwRaster *gpFlame5Raster;
|
||||
RwRaster *gpRainDropSmallRaster;
|
||||
RwRaster *gpBloodRaster;
|
||||
RwRaster *gpLeafRaster;
|
||||
RwRaster *gpLeafRaster[MAX_LEAF_FILES];
|
||||
RwRaster *gpCloudRaster1;
|
||||
RwRaster *gpCloudRaster4;
|
||||
RwRaster *gpBloodSmallRaster;
|
||||
|
@ -207,9 +209,6 @@ RwRaster *gpPointlightRaster;
|
|||
RwTexture *gpRainDropTex;
|
||||
RwRaster *gpRainDropRaster;
|
||||
|
||||
RwTexture *gpLetterTex;
|
||||
RwRaster *gpLetterRaster;
|
||||
|
||||
RwTexture *gpSparkTex;
|
||||
RwTexture *gpNewspaperTex;
|
||||
RwTexture *gpGunSmokeTex;
|
||||
|
@ -430,13 +429,13 @@ void CParticle::Initialise()
|
|||
ASSERT(gpBloodTex != nil);
|
||||
gpBloodRaster = RwTextureGetRaster(gpBloodTex);
|
||||
|
||||
gpLeafTex = RwTextureRead("gameleaf01_64", nil);
|
||||
ASSERT(gpLeafTex != nil);
|
||||
gpLeafRaster = RwTextureGetRaster(gpLeafTex);
|
||||
gpLeafTex[0] = RwTextureRead("gameleaf01_64", nil);
|
||||
ASSERT(gpLeafTex[0] != nil);
|
||||
gpLeafRaster[0] = RwTextureGetRaster(gpLeafTex[0]);
|
||||
|
||||
gpLetterTex = RwTextureRead("letter", nil);
|
||||
ASSERT(gpLetterTex != nil);
|
||||
gpLetterRaster = RwTextureGetRaster(gpLetterTex);
|
||||
gpLeafTex[1] = RwTextureRead("letter", nil);
|
||||
ASSERT(gpLeafTex[1] != nil);
|
||||
gpLeafRaster[1] = RwTextureGetRaster(gpLeafTex[1]);
|
||||
|
||||
gpCloudTex1 = RwTextureRead("cloud3", nil);
|
||||
ASSERT(gpCloudTex1 != nil);
|
||||
|
@ -555,7 +554,7 @@ void CParticle::Initialise()
|
|||
break;
|
||||
|
||||
case PARTICLE_DEBRIS:
|
||||
entry->m_ppRaster = &gpLeafRaster;
|
||||
entry->m_ppRaster = gpLeafRaster;
|
||||
break;
|
||||
|
||||
case PARTICLE_DEBRIS2:
|
||||
|
@ -750,7 +749,7 @@ void CParticle::Initialise()
|
|||
break;
|
||||
|
||||
case PARTICLE_TREE_LEAVES:
|
||||
entry->m_ppRaster = &gpLeafRaster;
|
||||
entry->m_ppRaster = gpLeafRaster;
|
||||
break;
|
||||
|
||||
case PARTICLE_CARCOLLISION_DUST:
|
||||
|
@ -929,11 +928,11 @@ void CParticle::Shutdown()
|
|||
RwTextureDestroy(gpBloodTex);
|
||||
gpBloodTex = nil;
|
||||
|
||||
RwTextureDestroy(gpLeafTex);
|
||||
gpLeafTex = nil;
|
||||
RwTextureDestroy(gpLeafTex[0]);
|
||||
gpLeafTex[0] = nil;
|
||||
|
||||
RwTextureDestroy(gpLetterTex);
|
||||
gpLetterTex = nil;
|
||||
RwTextureDestroy(gpLeafTex[1]);
|
||||
gpLeafTex[1] = nil;
|
||||
|
||||
RwTextureDestroy(gpCloudTex1);
|
||||
gpCloudTex1 = nil;
|
||||
|
|
Loading…
Reference in a new issue