mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 21:30:19 -06:00
a few minor code fixes.
also added a user file that should simplify running from VS for newcomers git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5338 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -388,7 +388,7 @@ void CMemoryWindow::onSearch(wxCommandEvent& event) {
|
||||
sscanf(txt.mb_str(), "%08x", &addr);
|
||||
}
|
||||
i=addr+4;
|
||||
for(;szRAM;i++){
|
||||
for(;i<szRAM;i++){
|
||||
for(k=0;k<size;k++){
|
||||
if(i+k>szRAM) break;
|
||||
if(k>size) break;
|
||||
|
Reference in New Issue
Block a user