From 19aa3a5d4b1a24c747826c6aeb3acaa5673d03b3 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Fri, 21 May 2021 09:10:53 +0100 Subject: Remove leftover Windows CE cruft. Thanks to Kaz Kylheku for pointing out that commit ff3e762fd007883 didn't do a complete job: I removed the code under '#ifdef _WIN32_WCE' in windows.c, but missed sections under the same ifdef in puzzles.h and puzzles.rc, together with an entire header file resource.h that was only included by code under those ifdefs. --- puzzles.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'puzzles.h') diff --git a/puzzles.h b/puzzles.h index d46a70e..fd3f67f 100644 --- a/puzzles.h +++ b/puzzles.h @@ -83,14 +83,6 @@ enum { #define REQUIRE_NUMPAD ( 1 << 11 ) /* end of `flags' word definitions */ -#ifdef _WIN32_WCE - /* Pocket PC devices have small, portrait screen that requires more vivid colours */ - #define SMALL_SCREEN - #define PORTRAIT_SCREEN - #define VIVID_COLOURS - #define STYLUS_BASED -#endif - #define IGNOREARG(x) ( (x) = (x) ) typedef struct frontend frontend; -- cgit v1.1