mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-08-20 09:57:09 +00:00
Remove more remnants
This commit is contained in:
parent
a331ca36be
commit
cbe174db39
|
|
@ -333,6 +333,7 @@ bool UIGroup::IsFullscreenGroup()
|
|||
return m_group == eUIGroup_Fullscreen;
|
||||
}
|
||||
|
||||
|
||||
void UIGroup::handleUnlockFullVersion()
|
||||
{
|
||||
for(unsigned int i = 0; i < eUILayer_COUNT; ++i)
|
||||
|
|
|
|||
|
|
@ -101,8 +101,6 @@ public:
|
|||
bool IsFullscreenGroup();
|
||||
|
||||
void handleUnlockFullVersion();
|
||||
|
||||
static const int LAYER_COUNT = eUILayer_COUNT;
|
||||
|
||||
void PrintTotalMemoryUsage(__int64 &totalStatic, __int64 &totalDynamic);
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -122,7 +122,6 @@ protected:
|
|||
virtual bool mapElementsAndNames();
|
||||
void initialiseMovie();
|
||||
void loadMovie();
|
||||
virtual void UpdateDisplaySize();
|
||||
|
||||
private:
|
||||
void getDebugMemoryUseRecursive(const wstring &moviePath, IggyMemoryUseInfo &memoryInfo);
|
||||
|
|
|
|||
Loading…
Reference in a new issue