diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-08-29 23:54:01 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-08-29 23:54:01 -0700 |
commit | 51e3e6cec3aea2589513e946f187d9c4bc8eadb3 (patch) | |
tree | 2c938074d5e21615c37a2b27de40061d9341a96b | |
parent | d2c239e1fa07f8d72f4ec5e27e56abbb4395306e (diff) | |
download | mu-51e3e6cec3aea2589513e946f187d9c4bc8eadb3.tar.gz |
4526
New levels should be added at the top of list of transforms rather than bottom. See layer 29.
-rw-r--r-- | subx/030---operands.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subx/030---operands.cc b/subx/030---operands.cc index 3b3b286c..aa3f2ded 100644 --- a/subx/030---operands.cc +++ b/subx/030---operands.cc @@ -133,7 +133,7 @@ void init_operand_type_help() { //:: transform packing operands into bytes in the right order -:(before "End Transforms") +:(after "Begin Transforms") // Begin Level-2 Transforms Transform.push_back(pack_operands); // End Level-2 Transforms |