mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
b9139a4242
* Fixed creating game save path for EmuNAND channels if EmuNAND chan path is different than EmuNAND save path. * Prevent deleted channels to be displayed if tmd still exists * Moved gameconfig.txt loading outside of Ocarina function * Changed return values in game booter * Nintendont: check Kenobiwii.bin only on Rev < 336
10 lines
217 B
C
10 lines
217 B
C
#ifndef SAVEPATH_H_
|
|
#define SAVEPATH_H_
|
|
|
|
#include "usbloader/disc.h"
|
|
|
|
void CreateTitleTMD(const char *path, const struct discHdr *hdr);
|
|
void CreateSavePath(const struct discHdr *hdr, const char *NandEmuPath);
|
|
|
|
#endif
|