about summary refs log tree commit diff stats
path: root/cpp
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-24 20:27:54 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-24 20:27:54 -0700
commit46c2c7b6662db0b0f0d8b1f1af40d14ae0aa4d57 (patch)
tree0cd3137d02b20838b04220070b0d5180412d762f /cpp
parent7c8493b3fba57b31708ba53875805f5b045d92e4 (diff)
downloadmu-46c2c7b6662db0b0f0d8b1f1af40d14ae0aa4d57.tar.gz
1174
Diffstat (limited to 'cpp')
-rw-r--r--cpp/020run2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/020run b/cpp/020run
index 93052b52..eb1dc77d 100644
--- a/cpp/020run
+++ b/cpp/020run
@@ -100,7 +100,7 @@ inline const instruction& current_instruction() {
 }
 
 inline bool routine::completed() const {
-  return Current_routine->running_step_index >= Recipe[running_recipe].steps.size();
+  return running_step_index >= Recipe[running_recipe].steps.size();
 }
 
 :(before "End Commandline Parsing")