mirror of
https://github.com/dborth/fceugx.git
synced 2025-07-28 03:37:27 +02:00

* Zapper support! Turn this on in the Controller Settings - most games require you to have the Zapper on Port 2. Thanks go to aksommerville whose previous work on the Zapper helped, and michniewski's cursor code * RAM game save support! Now you can save your games just like the NES did. By default game saves are saved/loaded automatically. This can be changed in the Preferences menu * Start/Select reversed mapping fixed for Wii controllers * Small bug fixes / improvements / tweaks
23 lines
506 B
C
23 lines
506 B
C
/****************************************************************************
|
|
* FCE Ultra 0.98.12
|
|
* Nintendo Wii/Gamecube Port
|
|
*
|
|
* Tantric September 2008
|
|
*
|
|
* dvd.h
|
|
*
|
|
* DVD loading routines
|
|
****************************************************************************/
|
|
|
|
#ifndef _DVD_H_
|
|
#define _DVD_H_
|
|
|
|
int getpvd ();
|
|
int ParseDVDdirectory ();
|
|
int LoadDVDFile (unsigned char *buffer);
|
|
bool TestDVD();
|
|
int dvd_read (void *dst, unsigned int len, u64 offset);
|
|
bool SwitchDVDFolder(char dir[]);
|
|
|
|
#endif
|