Feat: LoadCreateJoin (alfin kliado)

This commit is contained in:
Frcoxd
2026-04-20 23:28:09 -03:00
parent 0d2f561106
commit 6d170fa3da
27 changed files with 12178 additions and 14 deletions
+9 -1
View File
@@ -352,6 +352,14 @@ void UIScene::loadMovie()
// Read movie dimensions from the SWF header (available immediately after
// CreateFromMemory, no init tick needed).
IggyProperties *properties = IggyPlayerProperties ( swf );
if(!properties)
{
app.DebugPrintf("ERROR: IggyPlayerProperties returned null for scene '%ls'\n", moviePath.c_str());
#ifndef _CONTENT_PACKAGE
__debugbreak();
#endif
app.FatalLoadError();
}
m_movieHeight = properties->movie_height_in_pixels;
m_movieWidth = properties->movie_width_in_pixels;
m_renderWidth = m_movieWidth;
@@ -1468,4 +1476,4 @@ size_t UIScene::GetCallbackUniqueId()
bool UIScene::isReadyToDelete()
{
return true;
}
}