2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 18:24:55 +00:00

GetSystemCount

This commit is contained in:
2016-02-11 11:18:14 -08:00
parent 10296ef68f
commit 66339e3bfa
3 changed files with 63 additions and 27 deletions

View File

@@ -6,7 +6,10 @@
namespace Retro
{
const char* DecodeARAMFile(const char* name);
static const char* DecodeARAMFile(const char* name)
{
return (strncmp(name, "aram:", 5) == 0 ? name + 5 : name);
}
enum class ESeekOrigin
{
@@ -44,7 +47,6 @@ public:
static void ARAMARAMXferCallback(u32) {}
static void DVDARAMXferCallback(s32, DVDFileInfo*) {}
};
}
#endif // __RETRO_CDVDFILE_HPP__