mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'lemu/src/instructions/draw.rs')
| -rw-r--r-- | lemu/src/instructions/draw.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lemu/src/instructions/draw.rs b/lemu/src/instructions/draw.rs index 04b168c..82f97da 100644 --- a/lemu/src/instructions/draw.rs +++ b/lemu/src/instructions/draw.rs @@ -272,7 +272,7 @@ impl DrawInstruction for Triangle { map!(point!([email protected]), to32), map!(point!([email protected]), to32), ); - i.tri(a, b, c, state.col()); + i.tri::<f32>(a, b, c, state.col()); } } impl Disp for Triangle { |