mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
- removed debug code.
SVN r1509 (trunk)
This commit is contained in:
parent
26420a9c60
commit
e59ee12f2a
1 changed files with 0 additions and 2 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue