mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
This commit is contained in:
commit
a3e782a164
4 changed files with 19 additions and 18 deletions
|
@ -2055,6 +2055,7 @@ static void D_DoomInit()
|
||||||
rngseed = I_MakeRNGSeed();
|
rngseed = I_MakeRNGSeed();
|
||||||
use_staticrng = false;
|
use_staticrng = false;
|
||||||
}
|
}
|
||||||
|
srand(rngseed);
|
||||||
|
|
||||||
FRandom::StaticClearRandom ();
|
FRandom::StaticClearRandom ();
|
||||||
|
|
||||||
|
|
|
@ -57,7 +57,7 @@ class FGLTexture
|
||||||
public:
|
public:
|
||||||
FTexture * tex;
|
FTexture * tex;
|
||||||
FTexture * hirestexture;
|
FTexture * hirestexture;
|
||||||
char bIsTransparent;
|
int8_t bIsTransparent;
|
||||||
int HiresLump;
|
int HiresLump;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
|
@ -432,27 +432,27 @@ void M_LoadDefaults ()
|
||||||
|
|
||||||
struct pcx_t
|
struct pcx_t
|
||||||
{
|
{
|
||||||
char manufacturer;
|
int8_t manufacturer;
|
||||||
char version;
|
int8_t version;
|
||||||
char encoding;
|
int8_t encoding;
|
||||||
char bits_per_pixel;
|
int8_t bits_per_pixel;
|
||||||
|
|
||||||
unsigned short xmin;
|
uint16_t xmin;
|
||||||
unsigned short ymin;
|
uint16_t ymin;
|
||||||
unsigned short xmax;
|
uint16_t xmax;
|
||||||
unsigned short ymax;
|
uint16_t ymax;
|
||||||
|
|
||||||
unsigned short hdpi;
|
uint16_t hdpi;
|
||||||
unsigned short vdpi;
|
uint16_t vdpi;
|
||||||
|
|
||||||
unsigned char palette[48];
|
uint8_t palette[48];
|
||||||
|
|
||||||
char reserved;
|
int8_t reserved;
|
||||||
char color_planes;
|
int8_t color_planes;
|
||||||
unsigned short bytes_per_line;
|
uint16_t bytes_per_line;
|
||||||
unsigned short palette_type;
|
uint16_t palette_type;
|
||||||
|
|
||||||
char filler[58];
|
int8_t filler[58];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -250,7 +250,7 @@ xx(EQV3_K, beqv3, CVRK, NOP, 0, 0), // this will never be used.
|
||||||
|
|
||||||
// Pointer math.
|
// Pointer math.
|
||||||
xx(ADDA_RR, add, RPRPRI, NOP, 0, 0), // pA = pB + dkC
|
xx(ADDA_RR, add, RPRPRI, NOP, 0, 0), // pA = pB + dkC
|
||||||
xx(ADDA_RK, add, RPRPKI, ADDA_RR,4, REGT_POINTER),
|
xx(ADDA_RK, add, RPRPKI, ADDA_RR,4, REGT_INT),
|
||||||
xx(SUBA, sub, RIRPRP, NOP, 0, 0), // dA = pB - pC
|
xx(SUBA, sub, RIRPRP, NOP, 0, 0), // dA = pB - pC
|
||||||
xx(EQA_R, beq, CPRR, NOP, 0, 0), // if ((pB == pkC) != A) then pc++
|
xx(EQA_R, beq, CPRR, NOP, 0, 0), // if ((pB == pkC) != A) then pc++
|
||||||
xx(EQA_K, beq, CPRK, EQA_R, 4, REGT_POINTER),
|
xx(EQA_K, beq, CPRK, EQA_R, 4, REGT_POINTER),
|
||||||
|
|
Loading…
Reference in a new issue