Mercurial > sdl-ios-xcode
annotate README.WinCE @ 461:1d36f593078a
Date: Thu, 18 Jul 2002 23:51:40 +0200 (MEST)
From: Krister Walfridsson
Subject: [SDL] src/joystick/bsd/SDL_sysjoystick.c patch
The *BSD USB HID joystick code has two serious bugs:
1. If a joystick reports unhandled hid_input usage (for example HUG_RZ or
HUG_DIAL), then the last handled value will be overwritten with an
arbitrary value. (Fixed in the patch below by adding a default case.)
2. The current code does only handle logical coordinates in the range 0-255,
while a big part of available joysticks report -128 - 127. (This is solved
in the patch below by first center the range around 0, and then stretch
it to the correct range.)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 20 Aug 2002 06:08:42 +0000 |
parents | a6fa62b1be09 |
children | 86d0d01290ea |
rev | line source |
---|---|
453
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
1 |
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
2 Project files for embedded Visual C++ 4.0 can be found in VisualCE.zip |
0 | 3 |
4 NOTE: | |
5 There are several SDL features not available in the WinCE port of SDL. | |
6 | |
7 - DirectX is not yet available | |
8 - Semaphores are not available | |
9 - Joystick support is not available | |
10 - CD-ROM control is not available | |
11 | |
12 In addition, there are several features that run in "degraded" mode: | |
13 | |
14 Preprocessor Symbol Effect | |
15 =================== ================================= | |
16 | |
17 SDL_systimer.c: | |
18 USE_GETTICKCOUNT Less accurate values for SDL time functions | |
19 USE_SETTIMER Use only a single marginally accurate timer | |
20 | |
21 SDL_syswm.c: | |
22 DISABLE_ICON_SUPPORT Can't set the runtime window icon | |
23 | |
24 SDL_sysmouse.c: | |
25 USE_STATIC_CURSOR Only the arrow cursor is available | |
26 | |
27 SDL_sysevents.c: | |
28 NO_GETKEYBOARDSTATE Can't get modifier state on keyboard focus | |
29 | |
30 SDL_dibevents.c: | |
31 NO_GETKEYBOARDSTATE Very limited keycode translation | |
32 | |
33 SDL_dibvideo.c: | |
34 NO_GETDIBITS Can't distinguish between 15 bpp and 16 bpp | |
35 NO_CHANGEDISPLAYSETTINGS No fullscreen support | |
36 NO_GAMMA_SUPPORT Gamma correction not available |