From 989fa30bbfff8a1fb3105eb8dd376f43ef97093f Mon Sep 17 00:00:00 2001 From: Asper Date: Sat, 5 Oct 2013 05:24:30 +0000 Subject: [PATCH] minesweeper - filter mouse events git-svn-id: svn://kolibrios.org@3979 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/games/mine/trunk/mine.c-- | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/games/mine/trunk/mine.c-- b/programs/games/mine/trunk/mine.c-- index 038e7eac13..38482ba191 100644 --- a/programs/games/mine/trunk/mine.c-- +++ b/programs/games/mine/trunk/mine.c-- @@ -85,7 +85,7 @@ SystemColors colors; inline void fastcall mouse_enable() { $mov eax,40 - $mov ebx,100111b + $mov ebx,0xC0000027 $int 0x40 } @@ -93,7 +93,7 @@ inline void fastcall mouse_enable() inline void fastcall mouse_disable() { $mov eax,40 - $mov ebx,000111b + $mov ebx,0xC0000007 $int 0x40 }