diff options
author | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-07-27 22:30:19 +0000 |
---|---|---|
committer | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-07-27 22:30:19 +0000 |
commit | d61fdaf1932724f86a68484c4a05195ca270646e (patch) | |
tree | c5b9fb13007679401ed0b0937660fac491b69a5c /src/gui/playerbox.cpp | |
parent | 88b3f92061c703fdf6cf0f970684fb77de6d8795 (diff) | |
download | mana-client-d61fdaf1932724f86a68484c4a05195ca270646e.tar.gz mana-client-d61fdaf1932724f86a68484c4a05195ca270646e.tar.bz2 mana-client-d61fdaf1932724f86a68484c4a05195ca270646e.tar.xz mana-client-d61fdaf1932724f86a68484c4a05195ca270646e.zip |
Removed useless yet costly dynamic casts.
Diffstat (limited to 'src/gui/playerbox.cpp')
-rw-r--r-- | src/gui/playerbox.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/playerbox.cpp b/src/gui/playerbox.cpp index fad156f1..95366bee 100644 --- a/src/gui/playerbox.cpp +++ b/src/gui/playerbox.cpp @@ -80,7 +80,7 @@ PlayerBox::draw(gcn::Graphics *graphics) if (mPlayer) { // Draw character - mPlayer->draw(dynamic_cast<Graphics*>(graphics), 40, 42); + mPlayer->draw(static_cast<Graphics*>(graphics), 40, 42); } } @@ -92,5 +92,5 @@ PlayerBox::drawBorder(gcn::Graphics *graphics) w = getWidth() + bs * 2; h = getHeight() + bs * 2; - dynamic_cast<Graphics*>(graphics)->drawImageRect(0, 0, w, h, background); + static_cast<Graphics*>(graphics)->drawImageRect(0, 0, w, h, background); } |