From 1b81c7fb22cf91ece3d057022108908d79c5e13d Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Fri, 24 Mar 2023 22:50:01 +0100 Subject: [PATCH] fix warnings --- examples/cx16/bubbleuniverse.p8 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/cx16/bubbleuniverse.p8 b/examples/cx16/bubbleuniverse.p8 index ccd0e3eb0..db73e66cf 100644 --- a/examples/cx16/bubbleuniverse.p8 +++ b/examples/cx16/bubbleuniverse.p8 @@ -23,8 +23,8 @@ main { ubyte i for i in 0 to n { ubyte j - float ang1_start = i+t - float ang2_start = r*i+t + float ang1_start = i as float + t + float ang2_start = i as float * r + t float v=0 float u=0 for j in 0 to n {