Skip to content

Commit 3c07635

Browse files
committed
Fix GitHub issue #63.
1 parent 2ec4a4e commit 3c07635

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

source/backend/render/tracetask.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ void TraceTask::AdaptiveSupersamplingM2()
602602
for(int x = rect.left; x <= rect.right + 1; x++)
603603
{
604604
// trace upper-left corners of all pixels
605-
trace(x-0.5, y-0.5, GetViewData()->GetWidth(), GetViewData()->GetHeight(), pixels(x, y));
605+
trace(x, y, GetViewData()->GetWidth(), GetViewData()->GetHeight(), pixels(x, y));
606606
GetViewDataPtr()->Stats()[Number_Of_Pixels]++;
607607

608608
Cooperate();

source/base/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
#define OFFICIAL_VERSION_STRING "3.7.1"
4646
#define OFFICIAL_VERSION_NUMBER 371
4747

48-
#define POV_RAY_PRERELEASE "alpha.8600570"
48+
#define POV_RAY_PRERELEASE "alpha.8615129"
4949

5050
#if (POV_RAY_IS_AUTOBUILD == 1) && ((POV_RAY_IS_OFFICIAL == 1) || (POV_RAY_IS_SEMI_OFFICIAL == 1))
5151
#ifdef POV_RAY_PRERELEASE

unix/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.7.1-alpha.8600570
1+
3.7.1-alpha.8615129

0 commit comments

Comments
 (0)