Skip to content

Commit 4341fd8

Browse files
committed
MEGA65: English wording #439
Github discussion comment: #439 (comment) From ToneDeF on Discord, here: https://discord.com/channels/719326990221574164/781481205639020554/1389017621982347355
1 parent e6965dc commit 4341fd8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

targets/mega65/sdcard.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,14 +464,14 @@ int sdcard_init ( const char *fn, const int virtsd_flag )
464464
}
465465
#ifdef SD_CONTENT_SUPPORT
466466
if (!virtsd_flag && sdfd >= 0) {
467-
static const char msg[] = " on the SD-card image.\nPlease use UI menu: Disks -> SD-card -> Update files ...\nUI can be accessed with right mouse click into the emulator window.";
467+
static const char msg[] = " on the SD-card image.\nPlease use UI menu: Disks / Cart -> SD-card -> Update files ...\nUI menu can be accessed via right mouse click in the emulator window.";
468468
int r = sdcontent_check_xemu_signature();
469469
if (r < 0) {
470470
ERROR_WINDOW("Warning! Cannot read SD-card to get Xemu signature!");
471471
} else if (r == 0) {
472472
INFO_WINDOW("Cannot find Xemu's signature%s", msg);
473473
} else if (r < MEMCONTENT_VERSION_ID) {
474-
INFO_WINDOW("Xemu's singature is too old%s to upgrade", msg);
474+
INFO_WINDOW("Xemu's signature is too old%s to upgrade", msg);
475475
} else if (r > MEMCONTENT_VERSION_ID) {
476476
INFO_WINDOW("Xemu's signature is too new%s to DOWNgrade", msg);
477477
}

targets/mega65/ui.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ static void ui_update_sdcard ( void )
313313
// Call the updater :)
314314
if (!sdcontent_handle(sdcard_get_size(), NULL, SDCONTENT_DO_FILES | SDCONTENT_OVERWRITE_FILES | SDCONTENT_HDOS_DIR_TOO)) {
315315
INFO_WINDOW(
316-
"System files on your SD-card image seems to be updated successfully.\n"
316+
"System files on your SD-card image seem to have been updated successfully.\n"
317317
"Next time you may need this function, you can use MEGA65.ROM which is a backup copy of your selected ROM.\n\n"
318318
"ROM: %d (%s)\n\n"
319319
"Your emulated MEGA65 is about to RESET now!", rom_date, rom_name

0 commit comments

Comments
 (0)