diff --git a/projects/mtg/bin/Res/sets/back.jpg b/projects/mtg/bin/Res/sets/back.jpg index 73ec99714..7505e8246 100644 Binary files a/projects/mtg/bin/Res/sets/back.jpg and b/projects/mtg/bin/Res/sets/back.jpg differ diff --git a/projects/mtg/bin/Res/sets/back_thumb.jpg b/projects/mtg/bin/Res/sets/back_thumb.jpg index c68ae3a7b..077a75507 100644 Binary files a/projects/mtg/bin/Res/sets/back_thumb.jpg and b/projects/mtg/bin/Res/sets/back_thumb.jpg differ diff --git a/projects/mtg/bin/Res/sets/black.jpg b/projects/mtg/bin/Res/sets/black.jpg index 767dec642..5f4adc337 100644 Binary files a/projects/mtg/bin/Res/sets/black.jpg and b/projects/mtg/bin/Res/sets/black.jpg differ diff --git a/projects/mtg/bin/Res/sets/black_thumb.jpg b/projects/mtg/bin/Res/sets/black_thumb.jpg index 3bc2572d6..b627ab39c 100644 Binary files a/projects/mtg/bin/Res/sets/black_thumb.jpg and b/projects/mtg/bin/Res/sets/black_thumb.jpg differ diff --git a/projects/mtg/bin/Res/sets/blue.jpg b/projects/mtg/bin/Res/sets/blue.jpg index ad51eddf9..d33d5fc03 100644 Binary files a/projects/mtg/bin/Res/sets/blue.jpg and b/projects/mtg/bin/Res/sets/blue.jpg differ diff --git a/projects/mtg/bin/Res/sets/green.jpg b/projects/mtg/bin/Res/sets/green.jpg index 30ce07ce8..c7b8486ab 100644 Binary files a/projects/mtg/bin/Res/sets/green.jpg and b/projects/mtg/bin/Res/sets/green.jpg differ diff --git a/projects/mtg/bin/Res/sets/red.jpg b/projects/mtg/bin/Res/sets/red.jpg index 7bc1d7b1a..0f9f1395e 100644 Binary files a/projects/mtg/bin/Res/sets/red.jpg and b/projects/mtg/bin/Res/sets/red.jpg differ diff --git a/projects/mtg/bin/Res/sets/white.jpg b/projects/mtg/bin/Res/sets/white.jpg index 786f8fc62..22ab93e01 100644 Binary files a/projects/mtg/bin/Res/sets/white.jpg and b/projects/mtg/bin/Res/sets/white.jpg differ diff --git a/projects/mtg/src/CardGui.cpp b/projects/mtg/src/CardGui.cpp index ce96a335c..1c6f373fc 100644 --- a/projects/mtg/src/CardGui.cpp +++ b/projects/mtg/src/CardGui.cpp @@ -111,11 +111,13 @@ JQuad * CardGui::alternateThumbQuad(MTGCard * card){ JQuad * q; switch(card->getColor()) { + case Constants::MTG_COLOR_ARTIFACT : q = resources.RetrieveQuad("artifact_thumb.jpg");break; case Constants::MTG_COLOR_GREEN: q = resources.RetrieveQuad("green_thumb.jpg");break; case Constants::MTG_COLOR_BLUE : q = resources.RetrieveQuad("blue_thumb.jpg");break; case Constants::MTG_COLOR_RED : q = resources.RetrieveQuad("red_thumb.jpg");break; case Constants::MTG_COLOR_BLACK: q = resources.RetrieveQuad("black_thumb.jpg");break; case Constants::MTG_COLOR_WHITE: q = resources.RetrieveQuad("white_thumb.jpg");break; + case Constants::MTG_COLOR_LAND : q = resources.RetrieveQuad("land_thumb.jpg");break; default: q = resources.RetrieveQuad("black_thumb.jpg");break; } if(q && q->mTex) @@ -129,11 +131,13 @@ void CardGui::alternateRender(MTGCard * card, const Pos& pos){ JQuad * q; switch(card->getColor()) { - case Constants::MTG_COLOR_GREEN: q = resources.RetrieveQuad("green.jpg");break; + case Constants::MTG_COLOR_ARTIFACT: q = resources.RetrieveQuad("artifact.jpg");break; + case Constants::MTG_COLOR_GREEN: q = resources.RetrieveQuad("green.jpg");break; case Constants::MTG_COLOR_BLUE : q = resources.RetrieveQuad("blue.jpg");break; case Constants::MTG_COLOR_RED : q = resources.RetrieveQuad("red.jpg");break; case Constants::MTG_COLOR_BLACK: q = resources.RetrieveQuad("black.jpg");break; case Constants::MTG_COLOR_WHITE: q = resources.RetrieveQuad("white.jpg");break; + case Constants::MTG_COLOR_LAND: q = resources.RetrieveQuad("land.jpg");break; default: q = resources.RetrieveQuad("black.jpg");break; } if(q && q->mTex){