mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 08:25:18 +01:00
19 lines
381 B
C
19 lines
381 B
C
|
/****************************************************************************
|
||
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
||
|
*
|
||
|
* Tantric October 2008
|
||
|
*
|
||
|
* patch.h
|
||
|
*
|
||
|
* IPS/UPS/PPF patch support
|
||
|
***************************************************************************/
|
||
|
|
||
|
#ifndef PATCH_H
|
||
|
#define PATCH_H
|
||
|
|
||
|
#include "memfile.h"
|
||
|
|
||
|
void LoadPatch(int method);
|
||
|
|
||
|
#endif
|