From 84d38d7cd1dca5c35b2020ada372944355584063 Mon Sep 17 00:00:00 2001 From: pagefault <> Date: Sun, 23 Feb 2003 02:58:06 +0000 Subject: [PATCH] Fixed mouse getting stuck in endless loop when clicking homepage button in about window --- zsnes/src/win/winlink.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zsnes/src/win/winlink.cpp b/zsnes/src/win/winlink.cpp index 12f0d097..252a18f8 100644 --- a/zsnes/src/win/winlink.cpp +++ b/zsnes/src/win/winlink.cpp @@ -2825,6 +2825,8 @@ void SetMouseY(int Y) void ZsnesPage() { ShellExecute(NULL, NULL, "http://www.zsnes.com/", NULL, NULL, 0); + MouseX = 0; + MouseY = 0; } }