190
191
192
193
194
195
196
197
198
199
200
201
202
203
|
#define Q_maxTrigger 191
#define Q_pasteCommand 192
#define Q_codepage 193
#define Q_replaySpeed 194
#define Q_autoWin 195
#define Q_listMode 196
#define Q_listColumns 197
static const char*const global_quarks[]={
"screenWidth",
"screenHeight",
"margin",
"palette",
"popupColors",
"imageSize",
|
>
|
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
|
#define Q_maxTrigger 191
#define Q_pasteCommand 192
#define Q_codepage 193
#define Q_replaySpeed 194
#define Q_autoWin 195
#define Q_listMode 196
#define Q_listColumns 197
#define Q_ignore 198
static const char*const global_quarks[]={
"screenWidth",
"screenHeight",
"margin",
"palette",
"popupColors",
"imageSize",
|
387
388
389
390
391
392
393
394
395
396
397
398
399
400
|
"maxTrigger",
"pasteCommand",
"codepage",
"replaySpeed",
"autoWin",
"listMode",
"listColumns",
0};
#ifdef HEROMESH_BINDINGS
static const SDLKey quark_to_key[Q_undo+1-Q_backspace]={
SDLK_BACKSPACE,
SDLK_TAB,
SDLK_CLEAR,
SDLK_RETURN,
|
>
|
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
|
"maxTrigger",
"pasteCommand",
"codepage",
"replaySpeed",
"autoWin",
"listMode",
"listColumns",
"ignore",
0};
#ifdef HEROMESH_BINDINGS
static const SDLKey quark_to_key[Q_undo+1-Q_backspace]={
SDLK_BACKSPACE,
SDLK_TAB,
SDLK_CLEAR,
SDLK_RETURN,
|