mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 15:05:05 +01:00
20 lines
392 B
C
20 lines
392 B
C
|
/****************************************************************************
|
||
|
* FCE Ultra
|
||
|
* Nintendo Wii/Gamecube Port
|
||
|
*
|
||
|
* Tantric October 2008
|
||
|
*
|
||
|
* patch.h
|
||
|
*
|
||
|
* IPS/UPS/PPF patch support
|
||
|
***************************************************************************/
|
||
|
|
||
|
#ifndef PATCH_H
|
||
|
#define PATCH_H
|
||
|
|
||
|
#include "memfile.h"
|
||
|
|
||
|
int LoadPatch(int method, int size);
|
||
|
|
||
|
#endif
|