Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions source/StartUpProcess.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,28 +32,13 @@ extern bool isWiiVC; // in sys.cpp

StartUpProcess::StartUpProcess()
{
//! Load default font for the next text outputs
Theme::LoadFont("");

background = new GuiImage(screenwidth, screenheight, (GXColor){0, 0, 0, 255});

GXImageData = Resources::GetImageData("gxlogo.png");
GXImage = new GuiImage(GXImageData);
GXImage->SetAlignment(ALIGN_CENTER, ALIGN_MIDDLE);
GXImage->SetPosition(screenwidth / 2, screenheight / 2 - 50);

titleTxt = new GuiText("Loading...", 24, (GXColor){255, 255, 255, 255});
titleTxt->SetAlignment(ALIGN_CENTER, ALIGN_MIDDLE);
titleTxt->SetPosition(screenwidth / 2, screenheight / 2 + 30);

messageTxt = new GuiText(" ", 22, (GXColor){255, 255, 255, 255});
messageTxt->SetAlignment(ALIGN_CENTER, ALIGN_MIDDLE);
messageTxt->SetPosition(screenwidth / 2, screenheight / 2 + 60);

versionTxt = new GuiText(" ", 18, (GXColor){255, 255, 255, 255});
versionTxt->SetAlignment(ALIGN_LEFT, ALIGN_BOTTOM);
versionTxt->SetPosition(23, screenheight - 20);

// Please don't release unofficial builds w/o tagging them as such
#if defined(FULLCHANNEL)
versionTxt->SetTextf("v4.0c Rev. %s (%s)", LOADER_REV, GIT_VER);
Expand Down