- Change the text when riched20.dll cannot be loaded, and also display it with MessageBox, since

it's far too early to be used with I_FatalError. (But since this should always be available on
  every Windows version after 95, this should be a non-issue.)
- Make unknown OS versions default to Windows 2000 instead of Windows 95.

SVN r3802 (trunk)
This commit is contained in:
Randy Heit 2012-08-02 04:00:40 +00:00
commit ede622bb93
3 changed files with 8 additions and 12 deletions

View file

@ -607,8 +607,8 @@ void I_DetectOS(void)
if (OSPlatform == os_unknown)
{
Printf ("(Assuming Windows 95)\n");
OSPlatform = os_Win95;
Printf ("(Assuming Windows 2000)\n");
OSPlatform = os_Win2k;
}
}