1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00

Fixed a sign error.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4448 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2009-11-05 20:26:23 +00:00
parent 787f069738
commit bafd7a7279

View File

@ -71,7 +71,7 @@ void __fastcall__ tgi_arc (int x, int y, unsigned char rx, unsigned char ry,
/* Calculate the start coords */
x1 = x + tgi_imulround (rx, cc65_cos (sa));
y1 = y + tgi_imulround (ry, cc65_sin (sa));
y1 = y - tgi_imulround (ry, cc65_sin (sa));
do {
sa += inc;
if (sa >= ea) {