mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 11:40:44 +00:00
Fix typo "maxtileallocsiz" --> "maxtiltallocsiz" for MAXYDIM < 640.
git-svn-id: https://svn.eduke32.com/eduke32@5171 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
87ee51a248
commit
bbc7e21f2d
1 changed files with 1 additions and 1 deletions
|
@ -4565,7 +4565,7 @@ void G_DrawRooms(int32_t snum, int32_t smoothratio)
|
||||||
#if MAXYDIM >= 640
|
#if MAXYDIM >= 640
|
||||||
const int maxtiltallocsiz = 640*640;
|
const int maxtiltallocsiz = 640*640;
|
||||||
#else
|
#else
|
||||||
const int maxtileallocsiz = 320*320;
|
const int maxtiltallocsiz = 320*320;
|
||||||
#endif
|
#endif
|
||||||
// To render a tilted screen in high quality, we need at least
|
// To render a tilted screen in high quality, we need at least
|
||||||
// 640 pixels of *Y* dimension.
|
// 640 pixels of *Y* dimension.
|
||||||
|
|
Loading…
Reference in a new issue