From 1f186736a6e20449f3d78a7c6135c3cadc878605 Mon Sep 17 00:00:00 2001 From: "Kirill Lipatov (Leency)" Date: Fri, 19 Oct 2018 09:23:39 +0000 Subject: [PATCH] 1b converted to 0b1 format git-svn-id: svn://kolibrios.org@7485 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/games/rforces/trunk/kosSyst.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/programs/games/rforces/trunk/kosSyst.h b/programs/games/rforces/trunk/kosSyst.h index 36f84128f3..9261168982 100644 --- a/programs/games/rforces/trunk/kosSyst.h +++ b/programs/games/rforces/trunk/kosSyst.h @@ -30,18 +30,18 @@ typedef unsigned __int8 Byte; #define PROCESS_ID_SELF -1 //Event mask bits for function 40 -#define EVM_REDRAW 1b -#define EVM_KEY 10b -#define EVM_BUTTON 100b -#define EVM_EXIT 1000b -#define EVM_BACKGROUND 10000b -#define EVM_MOUSE 100000b -#define EVM_IPC 1000000b -#define EVM_STACK 10000000b -#define EVM_DEBUG 100000000b -#define EVM_STACK2 1000000000b -#define EVM_MOUSE_FILTER 0x80000000 -#define EVM_CURSOR_FILTER 0x40000000 +#define EVM_REDRAW 0b1 +#define EVM_KEY 0b10 +#define EVM_BUTTON 0b100 +#define EVM_EXIT 0b1000 +#define EVM_BACKGROUND 0b10000 +#define EVM_MOUSE 0b100000 +#define EVM_IPC 0b1000000 +#define EVM_STACK 0b10000000 +#define EVM_DEBUG 0b100000000 +#define EVM_STACK2 0b1000000000 +#define EVM_MOUSE_FILTER 0x80000000 +#define EVM_CURSOR_FILTER 0x40000000 //Button options #define BT_DEL 0x80000000