Fix some dumbs and comment some funnies
This commit is contained in:
parent
763c7d56c5
commit
cc3c12d065
2 changed files with 4 additions and 4 deletions
|
@ -197,7 +197,7 @@ void ActNpc024(NPCHAR *npc)
|
|||
npc->act_no = 4;
|
||||
npc->ani_no = 3;
|
||||
npc->act_wait = 0;
|
||||
npc->act_wait = 0;
|
||||
npc->act_wait = 0; // lol duplicate line
|
||||
}
|
||||
|
||||
break;
|
||||
|
@ -487,7 +487,7 @@ void ActNpc028(NPCHAR *npc)
|
|||
npc->direct = 2;
|
||||
|
||||
if (npc->direct == 0)
|
||||
npc->xm = -0x100u;
|
||||
npc->xm = -0x100;
|
||||
else
|
||||
npc->xm = 0x100;
|
||||
}
|
||||
|
@ -501,7 +501,7 @@ void ActNpc028(NPCHAR *npc)
|
|||
npc->act_no = 4;
|
||||
npc->ani_no = 3;
|
||||
npc->act_wait = 0;
|
||||
npc->act_wait = 0;
|
||||
npc->act_wait = 0; // lol duplicate line
|
||||
}
|
||||
|
||||
break;
|
||||
|
|
|
@ -20,7 +20,7 @@ class SOUNDBUFFER
|
|||
void Play(bool bLooping);
|
||||
void Stop();
|
||||
|
||||
void Mix(float *buffer, int len);
|
||||
void Mix(float (*buffer)[2], size_t samples);
|
||||
|
||||
SOUNDBUFFER *next;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue