1
Window / Re: Multiple keyreleased events triggering per keyrelease
« on: May 26, 2015, 01:46:19 pm »Because you don't actually check whether an event has been generated and yet still access the event, which leads to undefined behavior where the event type has a random value which then may match the value of sf::Event::KeyReleased.
Read the official tutorial on how to properly handle events.
D'oh. I knew it was something obvious. I'm a little disappointed it was that obvious, but nonetheless thank you. Works perfectly now.