This commit is contained in:
twinaphex 2015-07-30 03:07:03 +02:00
parent dd86f4df9a
commit 5e55f00fd1
3 changed files with 27 additions and 31 deletions

2
cpu.h
View File

@ -64,7 +64,7 @@ typedef enum
IRQ_DMA2 = 0x0400,
IRQ_DMA3 = 0x0800,
IRQ_KEYPAD = 0x1000,
IRQ_GAMEPAK = 0x2000,
IRQ_GAMEPAK = 0x2000
} irq_type;
typedef enum

View File

@ -56,8 +56,8 @@ static const map btn_map[] = {
{ RETRO_DEVICE_ID_JOYPAD_A, BUTTON_A }
};
void init_input();
u32 update_input();
void init_input(void);
u32 update_input(void);
void input_write_savestate(void);
void input_read_savestate(void);

4
main.h
View File

@ -84,13 +84,9 @@ void main_read_savestate(void);
#ifdef PSP_BUILD
u32 file_length(char *filename, s32 dummy);
#else
u32 file_length(const char *dummy, FILE *fp);
#endif
extern u32 real_frame_count;