Merge pull request #3202 from Chris--A/randomSeed

Modified randomSeed, now uses unsigned long.
This commit is contained in:
Martino Facchin 2015-05-28 10:54:26 +02:00
commit 550f8b61ac
2 changed files with 2 additions and 2 deletions

View File

@ -239,7 +239,7 @@ void noTone(uint8_t _pin);
// WMath prototypes
long random(long);
long random(long, long);
void randomSeed(unsigned int);
void randomSeed(unsigned long);
long map(long, long, long, long, long);
#endif

View File

@ -27,7 +27,7 @@ extern "C" {
#include "stdlib.h"
}
void randomSeed(unsigned int seed)
void randomSeed(unsigned long seed)
{
if (seed != 0) {
srandom(seed);