machinefactory: Fix spelling.

This commit is contained in:
joevt 2023-06-04 02:00:29 -07:00 committed by dingusdev
parent d426d0faeb
commit 214b52a96a

View File

@ -1,6 +1,6 @@
/* /*
DingusPPC - The Experimental PowerPC Macintosh emulator DingusPPC - The Experimental PowerPC Macintosh emulator
Copyright (C) 2018-22 divingkatae and maximum Copyright (C) 2018-23 divingkatae and maximum
(theweirdo) spatium (theweirdo) spatium
(Contact divingkatae#1017 or powermax#2286 on Discord for more info) (Contact divingkatae#1017 or powermax#2286 on Discord for more info)
@ -282,7 +282,7 @@ string MachineFactory::machine_name_from_rom(string& rom_filepath) {
rom_file.open(rom_filepath, ios::in | ios::binary); rom_file.open(rom_filepath, ios::in | ios::binary);
if (rom_file.fail()) { if (rom_file.fail()) {
LOG_F(ERROR, "Cound not open the specified ROM file."); LOG_F(ERROR, "Could not open the specified ROM file.");
goto bail_out; goto bail_out;
} }
@ -339,7 +339,7 @@ int MachineFactory::load_boot_rom(string& rom_filepath) {
rom_file.open(rom_filepath, ios::in | ios::binary); rom_file.open(rom_filepath, ios::in | ios::binary);
if (rom_file.fail()) { if (rom_file.fail()) {
LOG_F(ERROR, "Cound not open the specified ROM file."); LOG_F(ERROR, "Could not open the specified ROM file.");
rom_file.close(); rom_file.close();
return -1; return -1;
} }