diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/being.cpp | 4 | ||||
-rw-r--r-- | src/gui/gui.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/being.cpp b/src/being.cpp index 3214b491..245e023e 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -220,8 +220,8 @@ void Being::showCrit() } // Show crit notice - particleEngine->addTextRiseFadeOutEffect(text, font, - mPx + 16, mPy - 16); + particleEngine->addTextSplashEffect(text, 255, 255, 255, font, + mPx + 16, mPy + 16); } void Being::handleAttack(Being *victim, int damage) diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index 6d70d532..e386a85c 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -114,7 +114,7 @@ Gui::Gui(Graphics *graphics): try { mGuiFont = new gcn::ImageFont("graphics/gui/sansserif8.png", " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[" - "\\]^_`abcdefghijklmnopqrstuvwxyz{|}~|" + "\\]^_`abcdefghijklmnopqrstuvwxyz{|}~|áÁéÉßøèÈ" ); } catch (gcn::Exception e) |