X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=libctgraphics%2Fezsupport.cpp;h=f788b2e75965b218f29fdabeff03021053dd490c;hp=de495e90b778eb48c704230af70adec879148f88;hb=3fba6928127cd65870bdcd96c8114ad5894247ae;hpb=1fd4f7cc977b9f1499716de10d15656bd50f4816 diff --git a/libctgraphics/ezsupport.cpp b/libctgraphics/ezsupport.cpp index de495e9..f788b2e 100644 --- a/libctgraphics/ezsupport.cpp +++ b/libctgraphics/ezsupport.cpp @@ -2,7 +2,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: ezsupport.cpp,v 1.3 2000/07/04 18:33:35 kevin Exp $ +** $Id: ezsupport.cpp,v 1.4 2000/07/13 07:03:21 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -119,7 +119,7 @@ trunc (double x) { double integer; - double frac = modf (x, &integer); + modf (x, &integer); return (integer); }