Skip to content

Commit e1ccc68

Browse files
committed
add missing case for opcode decoding
1 parent d61c7f4 commit e1ccc68

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

OpenDreamRuntime/Procs/ProcDecoder.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,8 @@ public ITuple DecodeInstruction() {
142142
case DreamProcOpcode.Gradient:
143143
case DreamProcOpcode.Rgb:
144144
return (opcode, (DMCallArgumentsType)ReadByte(), ReadInt());
145+
case DreamProcOpcode.Animate:
146+
return (opcode, (DMCallArgumentsType)ReadByte(), ReadInt());
145147

146148
case DreamProcOpcode.Call:
147149
return (opcode, ReadReference(), (DMCallArgumentsType)ReadByte(), ReadInt());

0 commit comments

Comments
 (0)