diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-03-20 11:58:34 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-03-20 11:58:34 +0100 |
commit | 9f9a79068e85ddc3cc0a085bb74a2c1abe507065 (patch) | |
tree | 63392f28c5e1a0ad278ff673f5db712ba9f36b5a /BiomeVisualiser/BiomeViewWnd.cpp | |
parent | Optimized BioGen-MultiStepMap's performance by using linear interpolation, about 25 % increase in total chunk generation speed. (diff) | |
download | cuberite-9f9a79068e85ddc3cc0a085bb74a2c1abe507065.tar cuberite-9f9a79068e85ddc3cc0a085bb74a2c1abe507065.tar.gz cuberite-9f9a79068e85ddc3cc0a085bb74a2c1abe507065.tar.bz2 cuberite-9f9a79068e85ddc3cc0a085bb74a2c1abe507065.tar.lz cuberite-9f9a79068e85ddc3cc0a085bb74a2c1abe507065.tar.xz cuberite-9f9a79068e85ddc3cc0a085bb74a2c1abe507065.tar.zst cuberite-9f9a79068e85ddc3cc0a085bb74a2c1abe507065.zip |
Diffstat (limited to '')
-rw-r--r-- | BiomeVisualiser/BiomeViewWnd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BiomeVisualiser/BiomeViewWnd.cpp b/BiomeVisualiser/BiomeViewWnd.cpp index cb634034c..503b94f0c 100644 --- a/BiomeVisualiser/BiomeViewWnd.cpp +++ b/BiomeVisualiser/BiomeViewWnd.cpp @@ -44,7 +44,7 @@ bool cBiomeViewWnd::Create(HWND a_ParentWnd, LPCTSTR a_Title) SetWindowLongPtr(m_Wnd, GWLP_WNDPROC, m_Thunk);
cIniFile IniFile;
- cBiomeGen * BioGen = new cBioGenMultiStepMap(0);
+ cBiomeGen * BioGen = new cBioGenMultiStepMap(2);
BioGen->Initialize(IniFile);
m_Renderer.SetSource(new cGeneratorBiomeSource(BioGen));
|