From 214b52a96a395abc68475b3a866ce23f0150883f Mon Sep 17 00:00:00 2001 From: joevt Date: Sun, 4 Jun 2023 02:00:29 -0700 Subject: [PATCH] machinefactory: Fix spelling. --- machines/machinefactory.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/machines/machinefactory.cpp b/machines/machinefactory.cpp index 5a11f91..34d2853 100644 --- a/machines/machinefactory.cpp +++ b/machines/machinefactory.cpp @@ -1,6 +1,6 @@ /* DingusPPC - The Experimental PowerPC Macintosh emulator -Copyright (C) 2018-22 divingkatae and maximum +Copyright (C) 2018-23 divingkatae and maximum (theweirdo) spatium (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); 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; } @@ -339,7 +339,7 @@ int MachineFactory::load_boot_rom(string& rom_filepath) { rom_file.open(rom_filepath, ios::in | ios::binary); 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(); return -1; }