]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/states/RunState.cpp
refactored battle resources to better compatibility with loader
[l2e.git] / src / battle / states / RunState.cpp
index a22f43816a0006612066ba5ad290df8fd070548d..c75255c3d1edf51e9cd461066fdfd0c7ea2885d9 100644 (file)
@@ -24,7 +24,6 @@ namespace battle {
 
 void RunState::EnterState(Application &c, SDL_Surface *screen) {
        ctrl = &c;
-       // TODO: push battle animation if enemy is faster
 }
 
 void RunState::ExitState(Application &c, SDL_Surface *screen) {
@@ -68,7 +67,7 @@ void RunState::Render(SDL_Surface *screen) {
 
 void RunState::RenderTitleBar(SDL_Surface *screen, const Vector<int> &offset) {
        int height(battle->Res().titleFrame->BorderHeight() * 2 + battle->Res().titleFont->CharHeight());
-       battle->Res().titleFrame->Draw(screen, Vector<int>(offset.X(), offset.Y()), battle->Width(), height);
+       battle->Res().titleFrame->Draw(screen, offset, battle->Width(), height);
 
        Vector<int> textPosition(
                        (battle->Width() - (std::strlen(battle->Res().escapeText) * battle->Res().titleFont->CharWidth())) / 2,