mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
SW: Fix conflicting types for: highlight, temppicnum, tempcstat, templotag, temphitag, tempextra, ExtAnalyzeSprites, ExtPreSaveMap
git-svn-id: https://svn.eduke32.com/eduke32@5215 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
90de898fe5
commit
8b32035778
1 changed files with 10 additions and 4 deletions
|
@ -150,11 +150,11 @@ extern short highlightsectorcnt;
|
||||||
|
|
||||||
// RIGHT SHIFT selection key
|
// RIGHT SHIFT selection key
|
||||||
#define SPRITE_FLAG 16384
|
#define SPRITE_FLAG 16384
|
||||||
extern short highlight[MAXWALLS]; // sprite nums are + 16348
|
extern short highlight[MAXWALLS+MAXSPRITES]; // sprite nums are + 16348
|
||||||
extern short highlightcnt;
|
extern short highlightcnt;
|
||||||
|
|
||||||
// Variables copied with the tab key
|
// Variables copied with the tab key
|
||||||
extern short temppicnum, tempcstat, templotag, temphitag, tempextra;
|
extern int32_t temppicnum, tempcstat, templotag, temphitag, tempextra;
|
||||||
|
|
||||||
void SectorMoveFloorZ(int);
|
void SectorMoveFloorZ(int);
|
||||||
void SectorMoveCeilingZ(int);
|
void SectorMoveCeilingZ(int);
|
||||||
|
@ -458,11 +458,15 @@ DoAutoSize(spritetype *tspr)
|
||||||
short rotang = 0;
|
short rotang = 0;
|
||||||
|
|
||||||
void
|
void
|
||||||
ExtAnalyzeSprites(void)
|
ExtAnalyzeSprites(int32_t ourx, int32_t oury, int32_t oura, int32_t smoothr)
|
||||||
{
|
{
|
||||||
int i, currsprite;
|
int i, currsprite;
|
||||||
spritetype *tspr;
|
spritetype *tspr;
|
||||||
|
|
||||||
|
UNREFERENCED_PARAMETER(ourx);
|
||||||
|
UNREFERENCED_PARAMETER(oury);
|
||||||
|
UNREFERENCED_PARAMETER(oura);
|
||||||
|
UNREFERENCED_PARAMETER(smoothr);
|
||||||
|
|
||||||
rotang += 4;
|
rotang += 4;
|
||||||
if (rotang > 2047)
|
if (rotang > 2047)
|
||||||
|
@ -3701,10 +3705,12 @@ void ExtPreLoadMap(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void ExtPreSaveMap(void)
|
int32_t ExtPreSaveMap(void)
|
||||||
{
|
{
|
||||||
ResetBuildFAF();
|
ResetBuildFAF();
|
||||||
ResetSprites();
|
ResetSprites();
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in a new issue