Jeck - Some theme work. Reverted default theme background. Added Jade theme, mana colors for Inverted.

* In GuiBackground, we now load and use all of backdrop.jpg. This is for effects like that in Jade. It's an extremely minor change, so shouldn't effect stability.
This commit is contained in:
wagic.jeck
2009-10-24 23:42:06 +00:00
parent 8d0f3a4c81
commit 80be924614
13 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ GuiBackground::GuiBackground()
{
JTexture* texture = resources.GetTexture("backdrop.jpg");
if (texture)
quad = NEW JQuad(texture, 0, 0, 480, 255);
quad = NEW JQuad(texture, 0, 0, 480, 272);
else
{
quad = NULL;
@@ -22,5 +22,5 @@ GuiBackground::~GuiBackground()
void GuiBackground::Render()
{
JRenderer* renderer = JRenderer::GetInstance();
renderer->RenderQuad(quad, 0, 18);
renderer->RenderQuad(quad, 0, 0);
}