Skip to content

Commit

Permalink
Fix small issue where endPartial is called after a logPartial (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchgrout authored May 11, 2018
1 parent d078845 commit 7c30c7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tuataraTMSim/MainWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -2293,11 +2293,11 @@ public void actionPerformed(ActionEvent e)
if (sim.isHalted())
{
m_console.logPartial(gfxPanel, sim.getConfiguration());
m_console.endPartial();
}
else
{
m_console.logPartial(gfxPanel, "%s %c ", sim.getConfiguration(), Global.CONFIG_TEE);
m_console.endPartial();
}
}
// Machine halted as expected
Expand Down

0 comments on commit 7c30c7a

Please sign in to comment.