2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 03:47:43 +00:00

Windows memory card file creation

This commit is contained in:
Jack Andersen
2017-02-03 22:20:09 -10:00
parent 9ea7cee23c
commit 716972cd92
3 changed files with 50 additions and 6 deletions

View File

@@ -36,11 +36,6 @@ kabufuda::SystemString CMemoryCardSys::_CreateDolphinCard(kabufuda::ECardSlot sl
FILE* fp = hecl::Fopen(path.c_str(), "wb");
if (!fp)
return {};
/*
const u32 fword = 0xffffffff;
for (int i=0 ; i<0x1000000/4 ; ++i)
fwrite(&fword, 1, 4, fp);
*/
fclose(fp);
return path;