Skip to content

Commit

Permalink
🎨 staticother
Browse files Browse the repository at this point in the history
  • Loading branch information
fennecdjay committed Feb 23, 2019
1 parent ce5f9fb commit c3b73f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/vm.c
Expand Up @@ -748,7 +748,7 @@ DISPATCH();
staticother:
// LOOP_OPTIM
for(m_uint i = 0; i <= instr->m_val2; i += SZ_INT)
*(m_uint*)(reg+i) = *(m_uint*)(instr->m_val + i);
*(m_uint*)(reg+i) = *(m_uint*)((m_bit*)instr->m_val + i);
reg += instr->m_val2;
DISPATCH()
dotfunc:
Expand Down

0 comments on commit c3b73f5

Please sign in to comment.