mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
Fix parallaxed sector display in Mapster32 on Polymer.
git-svn-id: https://svn.eduke32.com/eduke32@2257 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
480690aa1d
commit
e30ed58aa0
1 changed files with 2 additions and 3 deletions
|
@ -817,7 +817,7 @@ void ExtSetupMapFilename(const char *mapname)
|
|||
void ExtLoadMap(const char *mapname)
|
||||
{
|
||||
int32_t i;
|
||||
int32_t sky=LA;
|
||||
int32_t sky=0;
|
||||
|
||||
getmessageleng = 0;
|
||||
getmessagetimeoff = 0;
|
||||
|
@ -826,8 +826,7 @@ void ExtLoadMap(const char *mapname)
|
|||
|
||||
// old-fashioned multi-psky handling
|
||||
|
||||
for (i=0; i<8; i++)
|
||||
pskyoff[i] = 0;
|
||||
Bmemset(pskyoff, 0, sizeof(pskyoff));
|
||||
|
||||
for (i=0; i<numsectors; i++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue