Working up to start of menu loading

This commit is contained in:
elasota
2019-12-12 23:37:40 -05:00
parent f7335a2c8b
commit c9c6976344
35 changed files with 1316 additions and 398 deletions

View File

@@ -191,7 +191,8 @@ Boolean DoWeHaveSoundManager3 (void)
Boolean DoWeHaveQuickTime (void)
{
return true;
PL_NotYetImplemented_TODO();
return false;
}
//-------------------------------------------------------------- DoWeHaveDragManager
@@ -214,14 +215,14 @@ short WhatsOurDepth (void)
{
case PortabilityLayer::PixelFormat_8BitCustom:
case PortabilityLayer::PixelFormat_8BitStandard:
return 8;
return 8;
case PortabilityLayer::PixelFormat_RGB555:
return 16;
return 16;
case PortabilityLayer::PixelFormat_RGB24:
case PortabilityLayer::PixelFormat_RGB32:
return 32;
default:
return 0;
return 0;
}
}