From 29e656145e1844db66158353697349758d16e660 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 5 Nov 2012 10:35:32 +0100 Subject: [PATCH] Removed accidental testing commit. --- .../include/PolyVoxCore/AmbientOcclusionCalculator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/PolyVoxCore/include/PolyVoxCore/AmbientOcclusionCalculator.h b/library/PolyVoxCore/include/PolyVoxCore/AmbientOcclusionCalculator.h index 3de70fa6..8047b2c1 100644 --- a/library/PolyVoxCore/include/PolyVoxCore/AmbientOcclusionCalculator.h +++ b/library/PolyVoxCore/include/PolyVoxCore/AmbientOcclusionCalculator.h @@ -56,7 +56,7 @@ namespace PolyVox bool operator()(const SimpleVolume::Sampler& sampler) { uint8_t sample = sampler.getVoxel(); - bool func = (*(mIsVoxelTransparentCallback))(sample); + bool func = mIsVoxelTransparentCallback(sample); return func; }