SFML community forums

Help => General => Topic started by: paul2024 on December 28, 2023, 10:36:51 am

Title: Norton problem
Post by: paul2024 on December 28, 2023, 10:36:51 am
I have developed a game for Windows using SFML, but when I run it I get a warning from Norton.
Please see attached images for details.
Any idea how I can get around this?
Title: Re: Norton problem
Post by: eXpl0it3r on December 29, 2023, 05:59:10 pm
It's a false positive that just detects the global keyboard hook that SFML uses when you use sf::Keyboard::isKeyPressed(). You can report it to Norton and hope they mark it as false positive. Alternatively, you might consider just using events instead of sf::Keyboard::isKeyPressed() to handle input.
Title: Re: Norton problem
Post by: paul2024 on December 30, 2023, 10:06:50 am
Thanks for that. I'll look into adjusting my code as you suggested.