Remove unnecessary asm unprotection of ylookup[].

git-svn-id: https://svn.eduke32.com/eduke32@5761 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2016-05-29 21:11:27 +00:00
parent 9a50071b1d
commit 3ccf33bc21

View file

@ -228,9 +228,6 @@ void calc_ylookup(int32_t bpl, int32_t lastyidx)
Baligned_free(ylookup);
ylookup = (intptr_t *)Xaligned_alloc(16, lastyidx * sizeof(intptr_t));
#if !defined(NOASM) && !defined(GEKKO) && !defined(__ANDROID__)
nx_unprotect((intptr_t)ylookup, (intptr_t)ylookup + (lastyidx * sizeof(intptr_t)), B_PROT_RW);
#endif
ylookupsiz = lastyidx;
}