diff --git a/Cocoa/Document.xib b/Cocoa/Document.xib index a5e55ae..a91837d 100644 --- a/Cocoa/Document.xib +++ b/Cocoa/Document.xib @@ -917,7 +917,7 @@ - + diff --git a/Cocoa/GBCheatWindowController.m b/Cocoa/GBCheatWindowController.m index cd2f218..dd1cc5a 100644 --- a/Cocoa/GBCheatWindowController.m +++ b/Cocoa/GBCheatWindowController.m @@ -102,7 +102,7 @@ else { dispatch_async(dispatch_get_main_queue(), ^{ NSBeep(); - [GBWarningPopover popoverWithContents:@"This code is not a valid GameShark or GameGenie code" onView:self.importCodeField]; + [GBWarningPopover popoverWithContents:@"This code is not a valid GameShark or Game Genie code" onView:self.importCodeField]; }); } }]; diff --git a/Core/cheats.c b/Core/cheats.c index 6201f9f..563ccef 100644 --- a/Core/cheats.c +++ b/Core/cheats.c @@ -160,7 +160,7 @@ const GB_cheat_t *GB_import_cheat(GB_gameboy_t *gb, const char *cheat, const cha } } - /* GameGenie */ + /* Game Genie */ { char stripped_cheat[10] = {0,}; for (unsigned i = 0; i < 9 && *cheat; i++) { diff --git a/SDL/gui.c b/SDL/gui.c index 712b083..8c771d0 100644 --- a/SDL/gui.c +++ b/SDL/gui.c @@ -824,7 +824,7 @@ static void import_cheat_callback(char ch) text_input[len + 1] = 0; if (text_input_title[0] != 'E') { strcpy(text_input_title, "Enter a GameShark"); - strcpy(text_input_title2, "or GameGenie Code"); + strcpy(text_input_title2, "or Game Genie Code"); } } @@ -833,7 +833,7 @@ static void import_cheat_callback(char ch) static void import_cheat(unsigned index) { strcpy(text_input_title, "Enter a GameShark"); - strcpy(text_input_title2, "or GameGenie Code"); + strcpy(text_input_title2, "or Game Genie Code"); text_input[0] = 0; gui_state = TEXT_INPUT; text_input_callback = import_cheat_callback;