From 27c6a91d6143d2a51d6248c4278b6af28c278e00 Mon Sep 17 00:00:00 2001 From: Kazuki Przyborowski Date: Fri, 9 Oct 2015 19:33:00 -0500 Subject: [PATCH] NXEngine v1.0.0.6 --- ai/final_battle/misery.cpp | 2 +- intro/title.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ai/final_battle/misery.cpp b/ai/final_battle/misery.cpp index 0ebb77c..64781f9 100644 --- a/ai/final_battle/misery.cpp +++ b/ai/final_battle/misery.cpp @@ -101,7 +101,7 @@ static void run_spells(Object *o) o->timer = 0; o->frame = 4; - if (++o->timer >= 3) + if (++o->timer2 >= 3) { o->state = STATE_SUMMON_BLOCK; o->timer2 = 0; diff --git a/intro/title.cpp b/intro/title.cpp index 2cf0bbd..f6db216 100644 --- a/intro/title.cpp +++ b/intro/title.cpp @@ -245,7 +245,7 @@ static void draw_title() draw_sprite(cx, acc_y, SPR_PIXEL_FOREVER); // version - static const char *VERSION = "NXEngine v. 1.0.0.5"; + static const char *VERSION = "NXEngine v. 1.0.0.6"; static const int SPACING = 5; int wd = GetFontWidth(VERSION, SPACING); cx = (SCREEN_WIDTH / 2) - (wd / 2); -- 2.11.4.GIT