This commit is contained in:
Lior Halphon 2016-10-04 04:01:06 +03:00
parent 90b7383df7
commit 76c795a966
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ static uint8_t generate_noise(uint8_t x, uint8_t y)
{
int value = (x + y * 128 + noise_seed);
uint8_t *data = (uint8_t *) &value;
unsigned hash;
unsigned hash = 0;
while ((int *) data != &value + 1) {
hash ^= (*data << 8);