--- deliantra/server/common/noise.C 2016/11/16 23:41:59 1.21 +++ deliantra/server/common/noise.C 2018/12/05 19:03:26 1.25 @@ -1,6 +1,7 @@ /* * This file is part of Deliantra, the Roguelike Realtime MMORPG. * + * Copyright (©) 2017,2018 Marc Alexander Lehmann / the Deliantra team * Copyright (©) 2010,2011,2012,2013,2014,2015,2016 Marc Alexander Lehmann / Robin Redeker / the Deliantra team * * Deliantra is free software: you can redistribute it and/or modify it under @@ -247,7 +248,7 @@ void noise_gen_base::seed (seedable_rand_gen &rng) { - for (int i = 0; i < array_length (rvmap); ++i) + for (int i = 0; i < ecb_array_length (rvmap); ++i) rvmap[i].seed (rng); } @@ -301,7 +302,7 @@ } return v; -} +} ///////////////////////////////////////////////////////////////////////////// @@ -414,9 +415,6 @@ return v; } -template class noise_gen; -template class noise_gen; - ///////////////////////////////////////////////////////////////////////////// template