avisando el tamaño del programa cuando se pasa del filesize

This commit is contained in:
2025-06-27 01:08:19 -04:00
parent 95b1fb3b43
commit 82ed59edeb

View File

@@ -116,7 +116,7 @@ void Machine::on_rom_load(const std::string& path)
// Por lo que un rom sería muy grande si sobrepasa este tamaño
if (file_size >= 0x1000 - 0x200)
{
std::cout << "File too large!" << std::endl;
std::cout << "File too large!" << file_size << std::endl;
return;
}