fixed build errors in sdl version

This commit is contained in:
punkrockguy318 2008-06-07 21:51:04 +00:00
parent 3ea76ba08d
commit db4fbe165f
2 changed files with 8 additions and 8 deletions

View File

@ -705,7 +705,7 @@ InitInputInterface()
attrib = 1;
break;
}
FCEUI_SetInput(x, InputType[x], InputDPtr, attrib);
FCEUI_SetInput(x, (ESI)InputType[x], InputDPtr, attrib);
}
attrib = 0;
@ -749,7 +749,7 @@ InitInputInterface()
break;
}
FCEUI_SetInputFC(InputType[2], InputDPtr, attrib);
FCEUI_SetInputFC((ESIFC)InputType[2], InputDPtr, attrib);
FCEUI_DisableFourScore(eoptions & EO_NOFOURSCORE);
}

View File

@ -1,9 +1,9 @@
#include "types.h"
#include "input.h"
#include "fceu.h"
#include "ppu.h"
#include "x6502.h"
#include "palette.h"
#include "../types.h"
#include "../input.h"
#include "../fceu.h"
#include "../ppu.h"
#include "../x6502.h"
#include "../palette.h"
void FCEU_DrawCursor(uint8 *buf, int xc, int yc);
void FCEU_DrawGunSight(uint8 *buf, int xc, int yc);