- Added Gez's A_CheckCeiling submission.
- Fixed: AM_NewResolution crashed when called from outside a level. - Added support for Quake PAK files. - Improved warning messages for WAD files with incorrect marker usage. SVN r1556 (trunk)
This commit is contained in:
parent
cc066bc409
commit
19c4e3caed
7 changed files with 226 additions and 26 deletions
|
|
@ -914,6 +914,11 @@ void AM_maxOutWindowScale ()
|
|||
void AM_NewResolution()
|
||||
{
|
||||
fixed_t oldmin = min_scale_mtof;
|
||||
|
||||
if ( oldmin == 0 )
|
||||
{
|
||||
return; // [SP] Not in a game, exit!
|
||||
}
|
||||
AM_calcMinMaxMtoF();
|
||||
scale_mtof = Scale(scale_mtof, min_scale_mtof, oldmin);
|
||||
scale_ftom = MapDiv(MAPUNIT, scale_mtof);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue