~ubuntu-branches/ubuntu/trusty/manaplus/trusty-proposed

« back to all changes in this revision

Viewing changes to src/gui/gui.cpp

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2014-01-10 11:00:12 UTC
  • mfrom: (1.1.17)
  • Revision ID: package-import@ubuntu.com-20140110110012-4mt9zewufrl9bbtj
Tags: 1.4.1.4-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 *  The ManaPlus Client
3
3
 *  Copyright (C) 2004-2009  The Mana World Development Team
4
4
 *  Copyright (C) 2009-2010  The Mana Developers
5
 
 *  Copyright (C) 2011-2013  The ManaPlus Developers
 
5
 *  Copyright (C) 2011-2014  The ManaPlus Developers
6
6
 *
7
7
 *  This file is part of The ManaPlus Client.
8
8
 *
468
468
        {
469
469
            const int posX = mouseX - (image->mBounds.w / 2);
470
470
            const int posY = mouseY - (image->mBounds.h / 2);
471
 
            DRAW_IMAGE(g2, image, posX, posY);
 
471
            g2->drawImage2(image, posX, posY);
472
472
        }
473
473
        if (mGuiFont)
474
474
        {
486
486
        if (mouseCursor)
487
487
        {
488
488
            mouseCursor->setAlpha(mMouseCursorAlpha);
489
 
            DRAW_IMAGE(g2, mouseCursor, mouseX - 15, mouseY - 17);
 
489
            g2->drawImage2(mouseCursor, mouseX - 15, mouseY - 17);
490
490
        }
491
491
    }
492
492