SameBoy | Accurate GB/GBC emulator |
| download: https://git.y1.nz/archives/sameboy.tar.gz | |
| README | Files | Log | Refs | LICENSE |
commit bd5d01c0a47d3840e5105cee6b23697cfb4d79f3 parent 4647c55949be787af9caf075e8931574a679d630 Author: Lior Halphon <LIJI32@gmail.com> Date: Sat, 31 Aug 2024 13:42:18 +0300 Game Genie has a space Diffstat:
| M | Cocoa/Document.xib | 2 | +- |
| M | Cocoa/GBCheatWindowController.m | 2 | +- |
| M | Core/cheats.c | 2 | +- |
| M | SDL/gui.c | 4 | ++-- |
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/Cocoa/Document.xib b/Cocoa/Document.xib @@ -917,7 +917,7 @@ <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="r5T-ol-Dod"> <rect key="frame" x="316" y="115" width="270" height="16"/> <autoresizingMask key="autoresizingMask" flexibleMinX="YES"/> - <textFieldCell key="cell" lineBreakMode="clipping" title="Import GameShark or GameGenie cheat:" id="0mf-EN-cKc"> + <textFieldCell key="cell" lineBreakMode="clipping" title="Import GameShark or Game Genie cheat:" id="0mf-EN-cKc"> <font key="font" metaFont="system"/> <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/> <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> diff --git 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 @@ -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 @@ -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;
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.