From b302645412df19a7894296f6ff07d41be0aa4d0a Mon Sep 17 00:00:00 2001 From: Devine Lu Linvega Date: Fri, 22 Mar 2024 10:43:02 -0700 Subject: [PATCH] Removed old device masks --- src/devices/file.h | 2 -- src/devices/mouse.h | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/devices/file.h b/src/devices/file.h index b29b482..5b06409 100644 --- a/src/devices/file.h +++ b/src/devices/file.h @@ -10,8 +10,6 @@ WITH REGARD TO THIS SOFTWARE. */ #define FILE_VERSION 1 -#define FILE_DEIMASK 0x0000 -#define FILE_DEOMASK 0xa260 #define POLYFILEY 2 #define DEV_FILE0 0xa diff --git a/src/devices/mouse.h b/src/devices/mouse.h index e848e7b..3af21f0 100644 --- a/src/devices/mouse.h +++ b/src/devices/mouse.h @@ -10,8 +10,6 @@ WITH REGARD TO THIS SOFTWARE. */ #define MOUSE_VERSION 1 -#define MOUSE_DEIMASK 0x0000 -#define MOUSE_DEOMASK 0x0000 void mouse_down(Uxn *u, Uint8 *d, Uint8 mask); void mouse_up(Uxn *u, Uint8 *d, Uint8 mask);