]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/states/SelectSpell.cpp
removed invalid TODO from spell selection
[l2e.git] / src / battle / states / SelectSpell.cpp
index 65cd8ccdc70173c2ab0e9106588ca249a6fb705f..df9273355e2d7135ed5a9bdd3f8772fd9787b350 100644 (file)
@@ -63,7 +63,6 @@ void SelectSpell::HandleEvents(const Input &input) {
                        }
                        if (spell->GetTargetingMode().TargetsAll()) {
                                ac.SetType(AttackChoice::MAGIC);
-                               // TODO: remove item from inventory
                                ac.SetSpell(spell);
                                battle->NextHero();
                                ctrl->PopState();
@@ -108,7 +107,7 @@ void SelectSpell::Render(SDL_Surface *screen) {
 
 void SelectSpell::RenderFrame(SDL_Surface *screen, const Vector<int> &offset) {
        const Frame *frame(battle->Res().selectFrame);
-       Vector<int> position(frame->BorderWidth(), frame->BorderHeight());
+       Vector<int> position(frame->BorderSize());
        int width(battle->Width() - 2 * frame->BorderWidth());
        int height(battle->Res().normalFont->CharHeight() * 13);
        frame->Draw(screen, position + offset, width, height);