about summary refs log tree commit diff stats
path: root/010vm.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-18 13:48:49 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-18 13:48:49 -0700
commit13ba3defe91b4de6ab3da7e937ee448c49909725 (patch)
tree91f72461441aee148ad08f1efa544f880e6c725e /010vm.cc
parent8d9edfd6223d0f374404067eadc62171f915b76b (diff)
downloadmu-13ba3defe91b4de6ab3da7e937ee448c49909725.tar.gz
1814 - save code in editor
Very rudimentary ability to read/write from file+version control. No
control over name.

Recipes now saved. But what to do about sandboxes?
Diffstat (limited to '010vm.cc')
-rw-r--r--010vm.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/010vm.cc b/010vm.cc
index f1fb2f17..9e348492 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -158,8 +158,8 @@ void setup_recipes() {
 //: itself.
 :(before "End One-time Setup")
 setup_recipes();
-assert(MAX_PRIMITIVE_RECIPES < 100);  // level 0 is primitives; until 99
-Next_recipe_ordinal = 100;
+assert(MAX_PRIMITIVE_RECIPES < 200);  // level 0 is primitives; until 199
+Next_recipe_ordinal = 200;
 // End Load Recipes
 :(before "End Test Run Initialization")
 assert(Next_recipe_ordinal < 1000);  // recipes being tested didn't overflow into test space