Refactor: split reading memory and updating rabiribidisplay

rabi_display
wcko87 8 years ago
parent 795dee32f6
commit 8e196a65fc
  1. 14
      rabi_splitter_WPF/RabiRibiDisplay.cs

@ -40,6 +40,15 @@ namespace rabi_splitter_WPF
// Snapshot Game Memory
snapshot = new MemorySnapshot(process, mainContext.veridx);
Update();
UpdateDebugArea(process);
UpdateEntityData(process);
prevSnapshot = snapshot;
}
private void Update()
{
#region Game State Machine
if (gameState.CurrentActivityIs(GameActivity.STARTING)) {
@ -161,11 +170,6 @@ namespace rabi_splitter_WPF
mainContext.Text16 = bosstext;
}
UpdateDebugArea(process);
UpdateEntityData(process);
prevSnapshot = snapshot;
}
private void StartNewGame()

Loading…
Cancel
Save