]> git.sur5r.net Git - cc65/commitdiff
Removed a "cc65_" prefix.
authorgreg-king5 <gregdk@users.sf.net>
Sat, 30 Mar 2019 15:06:09 +0000 (11:06 -0400)
committerGitHub <noreply@github.com>
Sat, 30 Mar 2019 15:06:09 +0000 (11:06 -0400)
This change is needed because of commit 3d8c3a494801e106e33fa7dcc4fd3daedad1b98a.

samples/tgidemo.c

index 6f3b86abc0bcbdc0706a61ea64c9c528cf146a4b..1d76fee2e3974d6815e6f2fb60542127d6e7bef2 100644 (file)
@@ -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);