kirjavascript / TetrisGYM

nes tetris training rom
Other
189 stars 17 forks source link

No0001 #49

Closed zohassadar closed 10 months ago

zohassadar commented 10 months ago

The RNG implementation tosses out the least significant bit from the 2nd byte making 0001 effectively the same as 0000. By zeroing out that bit before branching on zero, then seeds beginning with 0001 are ignored.

kirjavascript commented 10 months ago

thanks!!