From 44966e831facbbfedaa6618f998ced2a899c2a54 Mon Sep 17 00:00:00 2001 From: Laura Date: Mon, 22 Jan 2018 06:54:18 -0800 Subject: [PATCH] Simplify user-facing references to the Wii's extended memory segment --- README.md | 4 ++-- Source/GUI/MainWindow.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 855aad02..17dcc290 100644 --- a/README.md +++ b/README.md @@ -39,9 +39,9 @@ The compiled binaries should be appear in the directory named `build`. ## General usage -First, open Dolphin and start a game, then run this program. Make sure that it reports that the Wii-only extra memory is present for Wii games and absent for GameCube games. +First, open Dolphin and start a game, then run this program. Make sure that it reports that the memory type matches the system being emulated; Wii for Wii games and GameCube for GameCube games. ->_Exclusive to the Wii, this is an extra region of memory added as part of the enhancements from the earlier GameCube hardware. Consequently, the presence of this extra memory affects what is considered a valid watch address, as well as what areas of memory the scanner will look though._ +>_Added as part of the enhancements from the earlier GameCube hardware, the Wii has an extra region of memory onboard. Consequently, the presence of this extra memory affects what is a valid watch address and therefore what regions of memory the scanner will look though._ If the hooking process is successful, the UI should be enabled, otherwise, you will need to click the hook button before the program can be of any use. diff --git a/Source/GUI/MainWindow.cpp b/Source/GUI/MainWindow.cpp index 31695be3..1b5d6f4c 100755 --- a/Source/GUI/MainWindow.cpp +++ b/Source/GUI/MainWindow.cpp @@ -193,9 +193,9 @@ void MainWindow::onOpenMemViewerWithAddress(u32 address) void MainWindow::updateMem2Status() { if (DolphinComm::DolphinAccessor::isMEM2Present()) - m_lblMem2Status->setText("The extended Wii-only memory is present"); + m_lblMem2Status->setText("Memory type: Wii"); else - m_lblMem2Status->setText("The extended Wii-only memory is absent"); + m_lblMem2Status->setText("Memory type: GameCube"); m_viewer->onMEM2StatusChanged(DolphinComm::DolphinAccessor::isMEM2Present()); }