rust-console / gba

A crate that helps you make GBA games
https://docs.rs/gba
Apache License 2.0
658 stars 50 forks source link

Randomizer doesn't advance #192

Closed abledbody closed 9 months ago

abledbody commented 9 months ago

GenericLcg32.next_u32 does not, as the documentation and function signature suggest, advance the randomizer. It returns the next value without ever mutating.

Lokathor commented 9 months ago

You're definitely correct and I'm amused that the code is 2 years old and no one ever tried to use it.

Lokathor commented 9 months ago

released gba-0.11.5 with the fix