Remove more remnants

This commit is contained in:
Fayaz Shaikh 2026-03-03 17:31:17 -05:00
parent a331ca36be
commit cbe174db39
6 changed files with 3 additions and 16 deletions

View file

@ -333,6 +333,7 @@ bool UIGroup::IsFullscreenGroup()
return m_group == eUIGroup_Fullscreen;
}
void UIGroup::handleUnlockFullVersion()
{
for(unsigned int i = 0; i < eUILayer_COUNT; ++i)

View file

@ -102,8 +102,6 @@ public:
void handleUnlockFullVersion();
static const int LAYER_COUNT = eUILayer_COUNT;
void PrintTotalMemoryUsage(__int64 &totalStatic, __int64 &totalDynamic);
unsigned int GetLayerIndex(UILayer* layerPtr);

View file

@ -872,6 +872,7 @@ C4JRender::eViewportType UILayer::getViewport()
return m_parentGroup->GetViewportType();
}
void UILayer::handleUnlockFullVersion()
{
for(AUTO_VAR(it, m_sceneStack.begin()); it != m_sceneStack.end(); ++it)

View file

@ -34,6 +34,7 @@ public:
UIGroup *m_parentGroup;
public:
UILayer(UIGroup *parent);
void tick();
void render(S32 width, S32 height, C4JRender::eViewportType viewport);
void getRenderDimensions(S32 &width, S32 &height);

View file

@ -1199,19 +1199,6 @@ void UIScene::_handleFocusChange(F64 controlId, F64 childId)
ui.PlayUISFX(eSFX_Focus);
}
void UIScene::UpdateDisplaySize()
{
if (!swf)
{
return;
}
S32 width, height;
m_parentLayer->getRenderDimensions(width, height);
IggyPlayerSetDisplaySize(swf, width, height);
updateSafeZone();
}
void UIScene::_handleInitFocus(F64 controlId, F64 childId)
{
m_iFocusControl = (int)controlId;

View file

@ -122,7 +122,6 @@ protected:
virtual bool mapElementsAndNames();
void initialiseMovie();
void loadMovie();
virtual void UpdateDisplaySize();
private:
void getDebugMemoryUseRecursive(const wstring &moviePath, IggyMemoryUseInfo &memoryInfo);