Skip to content

Commit

Permalink
enable search menu by default
Browse files Browse the repository at this point in the history
  • Loading branch information
chernandezba committed Nov 18, 2024
1 parent 534f94f commit e4d249c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Cambios
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Corregido Scroll de Amstrad CPC
Corregido mapa de memoria y comportamiento en Jupiter Ace: ahora es perfecto y mejor que cualquier otro emulador
Corregida carga de snapshots .nex y la inicialización incorrecta de Layer 2 (corrige errores en Head Over Heels de Next por ejemplo)
Corregida carga de snapshots .nex y la MMU no gestionada correctamente
Corregida característica de Buscar menú
Corregida característica de Buscar menú. Ahora está habilitado por defecto
Corregido error al grabar snapshots .ZSF de Z88 cuando el bloque de RAM o de tarjeta de memoria no está comprimido
Corregido mostrar texto en footer de F5/Button menu
Corregido bug que se reabria el menu al executar comando run desde debug cpu y la opcion --allow-background-windows estaba desactivada
Expand Down
2 changes: 1 addition & 1 deletion src/Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Fixed Amstrad CPC Scroll
Fixed memory map and behaviour on Jupiter Ace: now it's perfect and better than any other emulator
Fixed loading .nex snapshots and Layer 2 not being initialized (fixes errors on Head Over Heels for Next, for example)
Fixed loading .nex snapshots and MMU not managed correctly
Fixed Search menu feature
Fixed Search menu feature. Now it's enabled by default
Fixed bug saving .ZSF Z88 snapshot when RAM or Memory Card block is not compressed
Fixed showing footer message F5/Button menu
Fixed bug reopening menu when executing run command on debug cpu and --allow-background-windows setting was disabled
Expand Down
3 changes: 2 additions & 1 deletion src/settings.c
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,8 @@ int gui_language=GUI_LANGUAGE_DEFAULT;
//Ruta de guardado de descargas juegos
char online_download_path[PATH_MAX]="";

z80_bit index_menu_enabled={0};
//Busqueda de menus
z80_bit index_menu_enabled={1};

//
// Keyboard Settings
Expand Down
2 changes: 1 addition & 1 deletion src/start.c
Original file line number Diff line number Diff line change
Expand Up @@ -1188,7 +1188,7 @@ printf("\n"
"--enable-xanniversary-logo Enable X Anniversary logo (enabled by default only on X version)\n"
"--disable-xanniversary-logo Disable X Anniversary logo. It's the default behaviour, only kept here for backwards compatibility\n"
"--disablemenufileutils Disable File Utilities menu\n"
"--disable-search-menu Disable search menu feature\n"
"--disable-search-menu Disable search menu feature (enabled by default)\n"
"--enable-search-menu Enable search menu feature\n"
"--load-additional-config Loads an additional .zesaruxdevrc config file (if exists) after loading .zesaruxrc and parsing command line settings\n"

Expand Down

0 comments on commit e4d249c

Please sign in to comment.