Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | ucfg.c: Include SDL1 and SDL2 headers. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | ams/sdl |
| Files: | files | file ages | folders |
| SHA3-256: |
519b4720fe6f6dc692a4a050d9405fd9 |
| User & Date: | ams 2024-06-12 11:53:35.371 |
Context
|
2024-06-12
| ||
| 11:55 | Minor cleanups. check-in: 8d25295997 user: ams tags: ams/sdl | |
| 11:53 | ucfg.c: Include SDL1 and SDL2 headers. check-in: 519b4720fe user: ams tags: ams/sdl | |
| 07:32 | Initial hack for handling all-up keys on Cadet. check-in: a2d5e20fe1 user: ams tags: ams/sdl | |
Changes
Changes to ucfg.c.
| ︙ | ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
#include "misc.h"
#include "tv.h"
#include "ucfg.h"
#include "uch11.h"
#include "utrace.h"
#if WITH_X11
#include "x11.h"
#endif
#define INIHEQ(s, n) (streq(s, section) && streq(n, name))
ucfg_t ucfg = {
#define X(s, n, default) default,
#include "ucfg.defs"
| > > > > | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
#include "misc.h"
#include "tv.h"
#include "ucfg.h"
#include "uch11.h"
#include "utrace.h"
#if WITH_X11
#include "x11.h"
#elif WITH_SDL1
#include "sdl1.h"
#elif WITH_SDL2
#include "sdl2.h"
#endif
#define INIHEQ(s, n) (streq(s, section) && streq(n, name))
ucfg_t ucfg = {
#define X(s, n, default) default,
#include "ucfg.defs"
|
| ︙ | ︙ |