Jeck - Final theme updates. Reverted backdrop.jpg to 255H, expanded wood.png to 32H, though only 28 are used (to prevent gray box issue). Also minor change to OptionItem.cpp so that themeinfo.txt loads on Default theme.
This commit is contained in:
@@ -6,7 +6,7 @@ GuiBackground::GuiBackground()
|
||||
{
|
||||
JTexture* texture = resources.GetTexture("backdrop.jpg");
|
||||
if (texture)
|
||||
quad = NEW JQuad(texture, 0, 0, 480, 272);
|
||||
quad = NEW JQuad(texture, 0, 0, 480, 255);
|
||||
else
|
||||
{
|
||||
quad = NULL;
|
||||
@@ -22,5 +22,5 @@ GuiBackground::~GuiBackground()
|
||||
void GuiBackground::Render()
|
||||
{
|
||||
JRenderer* renderer = JRenderer::GetInstance();
|
||||
renderer->RenderQuad(quad, 0, 0);
|
||||
renderer->RenderQuad(quad, 0, 18);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user