From e4d249c0d251519a69ac3765cb8b53a494f90421 Mon Sep 17 00:00:00 2001 From: chernandezba Date: Mon, 18 Nov 2024 18:33:57 +0100 Subject: [PATCH] enable search menu by default --- src/Cambios | 2 +- src/Changelog | 2 +- src/settings.c | 3 ++- src/start.c | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/Cambios b/src/Cambios index 916ddb80..6ab6d786 100644 --- a/src/Cambios +++ b/src/Cambios @@ -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 diff --git a/src/Changelog b/src/Changelog index 7d210bbd..39c02765 100644 --- a/src/Changelog +++ b/src/Changelog @@ -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 diff --git a/src/settings.c b/src/settings.c index 18cd1a54..12304543 100644 --- a/src/settings.c +++ b/src/settings.c @@ -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 diff --git a/src/start.c b/src/start.c index 58ff20ea..fc99a474 100644 --- a/src/start.c +++ b/src/start.c @@ -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"