mirror of
https://github.com/dborth/snes9xgx.git
synced 2025-04-08 21:51:17 +02:00

-Save/Load Method set to Auto - will automatically determine method (NOT YET IMPLEMENTED - defaults to SD for the moment) -All ROM, SRAM, Freeze, and preferences are saved/loaded according to these preferences -new cheats menu! Loads .CHT file from /cheats folder, must match file name of ROM -combined SRAM / Freeze Managers into new "Game Option" menu -SRAM / Freeze - game (re)loaded automatically after loading a SRAM or Freeze from Game Options -SRAM load/save defaults to ON -Game Options, Return to Game, Reload Game do not show up until a game has been loaded -added ROM Information page to Game Option menu -licence/credits moved to Credits page -menu code tweaks -USB support -added future support for Wii DVD / Network loading -MultiTap & SuperScope moved to controller configuration -combined/rewrote SRAM/preferences/freeze code - this is now much cleaner and less repetitve - a few steps closer to being workable -a lot of function parameters have been changed and standardized -if preferences can't be loaded at the start and/or are reset, preferences menu pops up -if Home button is pressed when a game is running, Game Menu pops up -a bunch of misc. bug fixes -probably some more things
38 lines
938 B
C
38 lines
938 B
C
/****************************************************************************
|
|
* Snes9x 1.50
|
|
*
|
|
* Nintendo Gamecube Port
|
|
* softdev July 2006
|
|
* crunchy2 May 2007
|
|
*
|
|
* sdload.cpp
|
|
*
|
|
* Load ROMS from SD Card
|
|
****************************************************************************/
|
|
|
|
#ifndef _LOADFROMSDC_
|
|
#define _LOADFROMSDC_
|
|
#include <gccore.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <ogcsys.h>
|
|
#include <fat.h>
|
|
#include <sys/dir.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
|
|
#define ROOTSDDIR "fat3:/"
|
|
#define ROOTUSBDIR "fat4:/"
|
|
|
|
bool fat_remount(PARTITION_INTERFACE partition);
|
|
static int FileSortCallback(const void *f1, const void *f2);
|
|
int updateFATdirname(int method);
|
|
int parseFATdirectory(int method);
|
|
int LoadFATFile (char *filename, int length);
|
|
int SaveBufferToFAT (char *filepath, int datasize, bool silent);
|
|
int LoadBufferFromFAT (char *filepath, bool silent);
|
|
|
|
extern char currFATdir[MAXPATHLEN];
|
|
|
|
#endif
|