mirror of
https://github.com/dingusdev/dingusppc.git
synced 2025-02-13 02:30:32 +00:00
machinefactory: Fix spelling.
This commit is contained in:
parent
d426d0faeb
commit
214b52a96a
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user