diff options
Diffstat (limited to 'src/test.cpp')
-rw-r--r-- | src/test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test.cpp b/src/test.cpp index 142918df6..38c663236 100644 --- a/src/test.cpp +++ b/src/test.cpp @@ -723,9 +723,9 @@ struct TestHeightmap void Random() { dstream<<"Running random code (get a human to check this)"<<std::endl; - dstream<<"rand() values: "; + dstream<<"myrand() values: "; for(u16 i=0; i<5; i++) - dstream<<(u16)rand()<<" "; + dstream<<(u16)myrand()<<" "; dstream<<std::endl; const s16 BS1 = 8; |