mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 23:07:42 +00:00
Various area streaming fixes, implement missing object loaders
This commit is contained in:
@@ -507,8 +507,8 @@ float CGraphics::GetSecondsMod900()
|
||||
|
||||
void CGraphics::TickRenderTimings()
|
||||
{
|
||||
g_RenderTimings++;
|
||||
g_DefaultSeconds = float(g_RenderTimings) / 60.f;
|
||||
g_RenderTimings = (g_RenderTimings + 1) % u32(900*60);
|
||||
g_DefaultSeconds = g_RenderTimings / 60.f;
|
||||
}
|
||||
|
||||
boo::IGraphicsDataFactory::Platform CGraphics::g_BooPlatform = boo::IGraphicsDataFactory::Platform::Null;
|
||||
|
||||
Reference in New Issue
Block a user