From e59ee12f2a500db789de64d6ea7d72646ca8f94d Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 27 Mar 2009 23:23:10 +0000 Subject: [PATCH] - removed debug code. SVN r1509 (trunk) --- src/m_random.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/m_random.cpp b/src/m_random.cpp index 02bb8880a6..436b803bca 100644 --- a/src/m_random.cpp +++ b/src/m_random.cpp @@ -269,7 +269,6 @@ void FRandom::StaticWriteRNGState (FILE *file) // Only write those RNGs that have names if (rng->NameCRC != 0) { - Printf("Writing RNG %s\n", rng->Name); arc << rng->NameCRC << rng->idx; for (int i = 0; i < SFMT::N32; ++i) { @@ -313,7 +312,6 @@ void FRandom::StaticReadRNGState (PNGHandle *png) { if (rng->NameCRC == crc) { - Printf("Reading RNG %s\n", rng->Name); arc << rng->idx; for (int i = 0; i < SFMT::N32; ++i) {