about summary refs log tree commit diff stats
path: root/cpp/016jump
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/016jump')
-rw-r--r--cpp/016jump3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/016jump b/cpp/016jump
index 827e70f4..9d192e96 100644
--- a/cpp/016jump
+++ b/cpp/016jump
@@ -7,8 +7,9 @@ assert(Next_recipe_number == JUMP);
 Next_recipe_number++;
 :(before "End Primitive Recipe Implementations")
 case JUMP: {
-  trace("run") << "ingredient 0 is " << instructions[pc].ingredients[0].name;
+  trace("run") << "ingredient 0 is " << instructions[pc].ingredients[0].value;
   pc += instructions[pc].ingredients[0].value;
+  trace("run") << "pc now " << pc;
   break;
 }