expand wincap options to second field
<Someone> wishes to add a couple of new options to the wince port ("run fullscreen" and "do not use CE software keyboard").
The wincap field was full, so this adds a second field for
additional options.
This commit is contained in:
@@ -5192,6 +5192,7 @@ struct window_procs Qt_procs = {
|
||||
WC_ASCII_MAP|WC_TILED_MAP|
|
||||
WC_FONT_MAP|WC_TILE_FILE|WC_TILE_WIDTH|WC_TILE_HEIGHT|
|
||||
WC_PLAYER_SELECTION|WC_SPLASH_SCREEN,
|
||||
0L,
|
||||
NetHackQtBind::qt_init_nhwindows,
|
||||
NetHackQtBind::qt_player_selection,
|
||||
NetHackQtBind::qt_askname,
|
||||
|
||||
@@ -93,6 +93,7 @@ int updated_inventory;
|
||||
struct window_procs X11_procs = {
|
||||
"X11",
|
||||
WC_COLOR|WC_HILITE_PET,
|
||||
0L,
|
||||
X11_init_nhwindows,
|
||||
X11_player_selection,
|
||||
X11_askname,
|
||||
|
||||
@@ -43,6 +43,7 @@ struct window_procs Gem_procs = {
|
||||
WC_FONT_MESSAGE|WC_FONT_STATUS|WC_FONT_MENU|WC_FONT_TEXT|WC_FONT_MAP|
|
||||
WC_FONTSIZ_MESSAGE|WC_FONTSIZ_STATUS|WC_FONTSIZ_MENU|WC_FONTSIZ_TEXT|WC_FONTSIZ_MAP|
|
||||
WC_TILE_WIDTH|WC_TILE_HEIGHT|WC_TILE_FILE|WC_VARY_MSGCOUNT|WC_ASCII_MAP,
|
||||
0L,
|
||||
Gem_init_nhwindows,
|
||||
Gem_player_selection,
|
||||
Gem_askname,
|
||||
|
||||
@@ -23,6 +23,7 @@ extern void tty_raw_print_bold(const char *);
|
||||
struct window_procs Gnome_procs = {
|
||||
"Gnome",
|
||||
WC_COLOR|WC_HILITE_PET|WC_INVERSE,
|
||||
0L,
|
||||
gnome_init_nhwindows,
|
||||
gnome_player_selection,
|
||||
gnome_askname,
|
||||
|
||||
@@ -50,6 +50,7 @@ struct window_procs tty_procs = {
|
||||
WC_MOUSE_SUPPORT|
|
||||
#endif
|
||||
WC_COLOR|WC_HILITE_PET|WC_INVERSE|WC_EIGHT_BIT_IN,
|
||||
0L,
|
||||
tty_init_nhwindows,
|
||||
tty_player_selection,
|
||||
tty_askname,
|
||||
|
||||
@@ -71,6 +71,7 @@ struct window_procs mswin_procs = {
|
||||
WC_FONTSIZ_MESSAGE|WC_FONTSIZ_STATUS|WC_FONTSIZ_MENU|WC_FONTSIZ_TEXT|
|
||||
WC_TILE_WIDTH|WC_TILE_HEIGHT|WC_TILE_FILE|WC_VARY_MSGCOUNT|
|
||||
WC_WINDOWCOLORS|WC_PLAYER_SELECTION|WC_SPLASH_SCREEN|WC_POPUP_DIALOG,
|
||||
0L,
|
||||
mswin_init_nhwindows,
|
||||
mswin_player_selection,
|
||||
mswin_askname,
|
||||
|
||||
Reference in New Issue
Block a user