Another stupid warning fix
This commit is contained in:
parent
5c83c20513
commit
c1b20f3050
|
@ -471,7 +471,7 @@ void SetAutoFireOffset(int offset)
|
||||||
void AutoFire(void)
|
void AutoFire(void)
|
||||||
{
|
{
|
||||||
static int counter = 0;
|
static int counter = 0;
|
||||||
counter = (++counter) % (8*7*5*3);
|
counter = (counter + 1) % (8*7*5*3);
|
||||||
//If recording a movie, use the frame # for the autofire so the offset
|
//If recording a movie, use the frame # for the autofire so the offset
|
||||||
//doesn't get screwed up when loading.
|
//doesn't get screwed up when loading.
|
||||||
if(FCEUMOV_Mode(MOVIEMODE_RECORD | MOVIEMODE_PLAY))
|
if(FCEUMOV_Mode(MOVIEMODE_RECORD | MOVIEMODE_PLAY))
|
||||||
|
|
Loading…
Reference in New Issue