From 60e40c854cc6d7d8d181a66714b8f7b8bfb58e0e Mon Sep 17 00:00:00 2001 From: greg-king5 Date: Sat, 30 Mar 2019 11:06:09 -0400 Subject: [PATCH] Removed a "cc65_" prefix. This change is needed because of commit 3d8c3a494801e106e33fa7dcc4fd3daedad1b98a. --- samples/tgidemo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/tgidemo.c b/samples/tgidemo.c index 6f3b86abc..1d76fee2e 100644 --- a/samples/tgidemo.c +++ b/samples/tgidemo.c @@ -151,7 +151,7 @@ static void DoDiagram (void) /* Calculate the next points */ X = (int) (((long) (MaxX - 19) * I) / 360); - Y = (int) (((long) Amp * -cc65_sin (I)) / 256); + Y = (int) (((long) Amp * -sin (I)) / 256); /* Draw the line */ tgi_lineto (XOrigin + X, YOrigin + Y); -- 2.39.2