Skip to content

Commit

Permalink
Fix crossrand.h removal
Browse files Browse the repository at this point in the history
  • Loading branch information
matpow2 committed Nov 26, 2018
1 parent e70fcdb commit 0aedbf2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.bat
Original file line number Diff line number Diff line change
@@ -1 +1 @@
C:\Windows\py.exe -3 setup.py build_ext --inplace
C:\Windows\py.exe -3 setup.py build_ext --inplace --force
3 changes: 1 addition & 2 deletions terraingen/tgen2/src/import/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
#ifndef TERRAINGEN_BASE_H
#define TERRAINGEN_BASE_H

#include "crossrand.h"
#include <iostream>
#include <cstdlib>
#include <cmath>
Expand Down Expand Up @@ -124,7 +123,7 @@ uint32_t rand_imp()
// import: srand
void srand_imp(uint32_t value)
{
hold_rand = (unsigned int)seed;
hold_rand = (unsigned int)value;
}

// import: IsProcessorFeaturePresent
Expand Down

0 comments on commit 0aedbf2

Please sign in to comment.