mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 18:50:46 +00:00
Default map zoom to something a bit more useful on Android. DONT_BUILD.
git-svn-id: https://svn.eduke32.com/eduke32@4706 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
9c1a32c790
commit
633cb8764b
1 changed files with 6 additions and 1 deletions
|
@ -1393,7 +1393,12 @@ end_vol4a:
|
|||
|
||||
ud.last_level = -1;
|
||||
g_lastSaveSlot = -1;
|
||||
|
||||
#ifdef __ANDROID__
|
||||
p->zoom = 360;
|
||||
#else
|
||||
p->zoom = 768;
|
||||
#endif
|
||||
p->gm = 0;
|
||||
|
||||
#if !defined LUNATIC
|
||||
|
@ -1730,7 +1735,7 @@ void G_SetupFilenameBasedMusic(char *levnamebuf, const char *boardfilename, int3
|
|||
p[0] = '.';
|
||||
}
|
||||
|
||||
for (int i = 0; i < ARRAY_SIZE(exts); i++)
|
||||
for (unsigned int i = 0; i < ARRAY_SIZE(exts); i++)
|
||||
{
|
||||
int32_t fil;
|
||||
|
||||
|
|
Loading…
Reference in a new issue