diff options
Diffstat (limited to '075scenario_keyboard.cc')
-rw-r--r-- | 075scenario_keyboard.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/075scenario_keyboard.cc b/075scenario_keyboard.cc index 3d816c2a..0de6a2eb 100644 --- a/075scenario_keyboard.cc +++ b/075scenario_keyboard.cc @@ -41,15 +41,15 @@ if (curr.name == "assume-keyboard") { curr.operation = Recipe_number["new"]; assert(curr.products.empty()); curr.products.push_back(reagent("keyboard:address")); - curr.products.at(0).set_value(mu_integer(KEYBOARD)); // address must be a positive integer + curr.products.at(0).set_value(KEYBOARD); result.steps.push_back(curr); // hacky that "Rewrite Instruction" is converting to multiple instructions // leave second instruction in curr curr.clear(); curr.operation = Recipe_number["init-fake-keyboard"]; assert(curr.ingredients.empty()); curr.ingredients.push_back(reagent("keyboard:address")); - curr.ingredients.at(0).set_value(mu_integer(KEYBOARD)); // address must be a positive integer + curr.ingredients.at(0).set_value(KEYBOARD); assert(curr.products.empty()); curr.products.push_back(reagent("keyboard:address")); - curr.products.at(0).set_value(mu_integer(KEYBOARD)); // address must be a positive integer + curr.products.at(0).set_value(KEYBOARD); } |