changeset 673:81ad01910f4b

ecl_vm: instr 100 fix.
author Gauvain "GovanifY" Roussel-Tarbouriech <gauvain@govanify.com>
date Mon, 12 Aug 2019 20:32:08 +0200
parents d20cf9ede914
children 3e4cc64a254d
files src/th06/ecl_vm.rs
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/th06/ecl_vm.rs
+++ b/src/th06/ecl_vm.rs
@@ -544,8 +544,8 @@ impl EclRunner {
 
             // 100
             SubInstruction::SetDeathAnim(index) => {
-                // TODO: takes 3 parameters in game, first one is death anim and 2 others are
-                // unknown. To reverse!
+                // TODO: takes 3 parameters in game as u8 unlike our single u32.
+                // To reverse!
                 let mut enemy = self.enemy.borrow_mut();
                 enemy.death_anim = index;
             }