minesweeper - filter mouse events

git-svn-id: svn://kolibrios.org@3979 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Asper 2013-10-05 05:24:30 +00:00
parent 70b5927c24
commit 989fa30bbf

View File

@ -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
}