Skip to content

Commit

Permalink
Merge pull request #532 from meetpatty/master
Browse files Browse the repository at this point in the history
Fix Memory Viewer
  • Loading branch information
gid15 committed Jun 4, 2024
2 parents 8c0136a + f810ac2 commit bb94cd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jpcsp/Debugger/MemoryViewer.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public void run() {
}

public void RefreshMemory() {
int addr = Emulator.getProcessor().cpu.pc;
int addr = startaddress;
taMemoryView.setText("");

visiblelines = taMemoryView.getHeight() / taMemoryView.getFontMetrics(taMemoryView.getFont()).getHeight();
Expand Down

0 comments on commit bb94cd4

Please sign in to comment.