improving smell

This commit is contained in:
Skye Terran 2021-12-09 17:52:06 -08:00
parent 6f353fd70e
commit bf1d3bf477
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ fn execute(instructions: &mut Vec<u8>, values: &mut Vec<f32>) {
let mut iter = instructions.iter();
// Handle literals
let mut op_type: Opcode = Opcode::Generic;
let mut op_type = Opcode::Generic;
let mut literal = [0u8; 4];
let mut lit_digit = 0;