Change load_gamepak signature

This commit is contained in:
twinaphex
2014-12-20 08:35:53 +01:00
parent 9fe97ba148
commit ba834beeb1
3 changed files with 29 additions and 31 deletions

View File

@@ -20,6 +20,8 @@
#ifndef MEMORY_H
#define MEMORY_H
#include "libretro.h"
typedef enum
{
DMA_START_IMMEDIATELY,
@@ -175,7 +177,7 @@ extern char gamepak_filename[512];
cpu_alert_type dma_transfer(dma_transfer_type *dma);
u8 *memory_region(u32 address, u32 *memory_limit);
u32 load_gamepak(const char *name);
u32 load_gamepak(const struct retro_game_info* info, const char *name);
u32 load_backup(char *name);
s32 load_bios(char *name);
void update_backup(void);