Remove dumb getPointers that actually want the whole memory block.

The whole memory block is accessable globally anyway. Much
cleaner!
This commit is contained in:
Scott Mansell
2014-10-29 23:51:27 +13:00
parent 089e32ba7d
commit 3e47480470
4 changed files with 7 additions and 5 deletions

View File

@ -126,7 +126,7 @@ CheatSearchTab::CheatSearchTab(wxWindow* const parent)
void CheatSearchTab::StartNewSearch(wxCommandEvent& WXUNUSED (event))
{
const u8* const memptr = Memory::GetPointer(0);
const u8* const memptr = Memory::m_pRAM;
if (memptr == nullptr)
{
WxUtils::ShowErrorDialog(_("A game is not currently running."));
@ -158,7 +158,7 @@ void CheatSearchTab::StartNewSearch(wxCommandEvent& WXUNUSED (event))
void CheatSearchTab::FilterCheatSearchResults(wxCommandEvent&)
{
const u8* const memptr = Memory::GetPointer(0);
const u8* const memptr = Memory::m_pRAM;
if (memptr == nullptr)
{
WxUtils::ShowErrorDialog(_("A game is not currently running."));