diff options
| author | jacob1 <jfu614@gmail.com> | 2012-12-16 01:34:00 (GMT) |
|---|---|---|
| committer | jacob1 <jfu614@gmail.com> | 2012-12-16 01:34:00 (GMT) |
| commit | c62ef2cb359f31f305b87e49d230f0786df28007 (patch) | |
| tree | 7ea92f44fdb8748d9699c056ca01c8cafb368d9b /src/graphics/Graphics.cpp | |
| parent | e4907d18815b72bb811e4ef981c8cdff4a880a1b (diff) | |
| download | powder-c62ef2cb359f31f305b87e49d230f0786df28007.zip powder-c62ef2cb359f31f305b87e49d230f0786df28007.tar.gz | |
fix upvote buttons still having colored background after clearing the save, make them look more like from in tpt
Diffstat (limited to 'src/graphics/Graphics.cpp')
| -rw-r--r-- | src/graphics/Graphics.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/graphics/Graphics.cpp b/src/graphics/Graphics.cpp index c3a5aca..974a169 100644 --- a/src/graphics/Graphics.cpp +++ b/src/graphics/Graphics.cpp @@ -824,9 +824,9 @@ void Graphics::draw_icon(int x, int y, Icon icon, unsigned char alpha, bool inve break; case IconVoteUp: if(invert) - drawchar(x, y, 0xCB, 0, 100, 0, alpha); + drawchar(x, y+1, 0xCB, 0, 100, 0, alpha); else - drawchar(x, y, 0xCB, 0, 187, 18, alpha); + drawchar(x, y+1, 0xCB, 0, 187, 18, alpha); break; case IconVoteDown: if(invert) |
