From 38d4ecccf4310e7edd90526128da76405df6f901 Mon Sep 17 00:00:00 2001 From: Mark Lacey <641@rudkx.com> Date: Tue, 21 Jun 2011 23:55:44 -0700 Subject: [PATCH] Fix pi in two places 3.14159<2>653<6>. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cc9ee60c..3b5ebec6 100644 --- a/Makefile +++ b/Makefile @@ -111,7 +111,7 @@ objs/stdlib-c.o: objs/stdlib-c.cpp objs/stdlib_ispc.cpp: stdlib.ispc @echo Creating C++ source from $< - @$(CPP) -DISPC=1 -DPI=3.1415936535 $< | ./stdlib2cpp.py > $@ + @$(CPP) -DISPC=1 -DPI=3.1415926536 $< | ./stdlib2cpp.py > $@ objs/stdlib_ispc.o: objs/stdlib_ispc.cpp @echo Compiling $<