Mandelbrot: GCC2 fix.

This commit is contained in:
Augustin Cavalier
2018-12-12 18:13:18 -05:00
parent e5aeaa8d03
commit 675e5dfcac
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -32,6 +32,7 @@ FractalEngine::FractalEngine(BHandler* parent, BLooper* looper)
fWidth(0), fHeight(0),
fRenderBuffer(NULL),
fRenderBufferLen(0),
fSubsampling(2),
fMessenger(parent, looper),
fIterations(1024),
fColorset(Colorset_Royal)
+1 -1
View File
@@ -46,7 +46,7 @@ private:
uint8* fRenderBuffer;
uint32 fRenderBufferLen;
uint8 fSubsampling = 2;
uint8 fSubsampling;
// 1 disables subsampling.
BMessenger fMessenger;