ref: c162d06f96e890c96f55a75154ea40de86dfc20e
parent: deb0538d03080868d1da9e6833f52c768d5955fa
author: Clownacy <Clownacy@users.noreply.github.com>
date: Sat Jun 29 20:30:30 EDT 2019
BossAlmo1.cpp extra accuracy I forgot, the Linux debug data tells us the exact line number each variable is declared on.
--- a/src/BossAlmo1.cpp
+++ b/src/BossAlmo1.cpp
@@ -110,10 +110,6 @@
static void ActBossChar_Core_Mini(NPCHAR *npc)
{
- unsigned char deg;
- int ym;
- int xm;
-
RECT rect[3] = {
{256, 0, 320, 40},
{256, 40, 320, 80},
@@ -120,6 +116,9 @@
{256, 80, 320, 120},
};
+ int xm, ym;
+ unsigned char deg;
+
npc->life = 1000;
switch (npc->act_no)
@@ -242,16 +241,13 @@
void ActBossChar_Core(void)
{
- unsigned char deg;
- int ym;
- int xm;
- int i;
-
- static unsigned char flash;
-
NPCHAR *npc = gBoss;
+ static unsigned char flash;
BOOL bShock = FALSE;
+ int i;
+ unsigned char deg;
+ int xm, ym;
switch (npc->act_no)
{