Remove unnecessary warning if xpram file doesn't exist

This commit is contained in:
robxnano 2022-10-08 16:20:13 +01:00
parent 6da609938e
commit fdeb8617da
1 changed files with 0 additions and 5 deletions

View File

@ -41,11 +41,6 @@ void LoadXPRAM(const char* vmdir)
read(fd, XPRAM, XPRAM_SIZE);
close(fd);
}
else
{
fprintf(stderr, "WARNING: Unable to load %s (%s)\n",
xpram_name.c_str(), strerror(errno));
}
}
/*