- removed debug code.

SVN r1509 (trunk)
This commit is contained in:
Christoph Oelckers 2009-03-27 23:23:10 +00:00
parent 26420a9c60
commit e59ee12f2a
1 changed files with 0 additions and 2 deletions

View File

@ -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)
{