- removed support for paletted Windows display modes.

This was only relevant for DirectDraw which has been removed.
This commit is contained in:
Christoph Oelckers 2018-03-27 10:41:38 +02:00
commit dd491d6558
10 changed files with 1 additions and 68 deletions

View file

@ -933,8 +933,7 @@ bool I_SetCursor(FTexture *cursorpic)
{
HCURSOR cursor;
if (cursorpic != NULL && cursorpic->UseType != ETextureType::Null &&
(screen == NULL || !screen->Is8BitMode()))
if (cursorpic != NULL && cursorpic->UseType != ETextureType::Null)
{
// Must be no larger than 32x32.
if (cursorpic->GetWidth() > 32 || cursorpic->GetHeight() > 32)