mirror of
https://github.com/libretro/FreeIntv.git
synced 2024-11-28 02:50:55 +00:00
more logging, intendation fixes
This commit is contained in:
parent
4f96be6e12
commit
cd5a8f971a
@ -57,7 +57,14 @@ int LoadCart(char *path)
|
|||||||
size++;
|
size++;
|
||||||
}
|
}
|
||||||
fclose(fp);
|
fclose(fp);
|
||||||
|
if (feof(fp))
|
||||||
|
{
|
||||||
|
printf("[INFO] [FREEINTV] Successful cartridge load: EOF indicator set");
|
||||||
|
}
|
||||||
|
if (ferror(fp))
|
||||||
|
{
|
||||||
|
printf("[ERROR] [FREEINTV] Cartridge load error indicator set");
|
||||||
|
}
|
||||||
if(isROM()) // intellicart format
|
if(isROM()) // intellicart format
|
||||||
{
|
{
|
||||||
printf("[INFO] [FREEINTV] Intellicart cartridge format detected\n");
|
printf("[INFO] [FREEINTV] Intellicart cartridge format detected\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user