[PATCH] Fixes #8887 [haiku_loader] adjust fail-safe video mode help text (easy)

  • From: Rahul Jain <talentediq@xxxxxxxxx>
  • Date: Mon, 22 May 2017 11:42:29 +0530

---
 src/system/boot/platform/amiga_m68k/menu.cpp | 4 ++--
 src/system/boot/platform/atari_m68k/menu.cpp | 4 ++--
 src/system/boot/platform/bios_ia32/menu.cpp  | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/system/boot/platform/amiga_m68k/menu.cpp 
b/src/system/boot/platform/amiga_m68k/menu.cpp
index ec82229..c390479 100644
--- a/src/system/boot/platform/amiga_m68k/menu.cpp
+++ b/src/system/boot/platform/amiga_m68k/menu.cpp
@@ -19,11 +19,11 @@ platform_add_menus(Menu *menu)
 
        switch (menu->Type()) {
                case MAIN_MENU:
-                       menu->AddItem(item = new(nothrow) MenuItem("Select 
fail-safe video mode", video_mode_menu()));
+                       menu->AddItem(item = new(nothrow) MenuItem("Select 
fail-safe video driver", video_mode_menu()));
                        item->SetTarget(video_mode_hook);
                        break;
                case SAFE_MODE_MENU:
-                       menu->AddItem(item = new(nothrow) MenuItem("Use 
fail-safe video mode"));
+                       menu->AddItem(item = new(nothrow) MenuItem("Use 
fail-safe video driver"));
                        item->SetType(MENU_ITEM_MARKABLE);
                        item->SetData(B_SAFEMODE_FAIL_SAFE_VIDEO_MODE);
                        item->SetHelpText("The system will use VESA mode and 
won't try to open any video graphics driver");
diff --git a/src/system/boot/platform/atari_m68k/menu.cpp 
b/src/system/boot/platform/atari_m68k/menu.cpp
index 57a448b..9b889c7 100644
--- a/src/system/boot/platform/atari_m68k/menu.cpp
+++ b/src/system/boot/platform/atari_m68k/menu.cpp
@@ -20,11 +20,11 @@ platform_add_menus(Menu *menu)
 
        switch (menu->Type()) {
                case MAIN_MENU:
-                       menu->AddItem(item = new(nothrow) MenuItem("Select 
fail-safe video mode", video_mode_menu()));
+                       menu->AddItem(item = new(nothrow) MenuItem("Select 
fail-safe video driver", video_mode_menu()));
                        item->SetTarget(video_mode_hook);
                        break;
                case SAFE_MODE_MENU:
-                       menu->AddItem(item = new(nothrow) MenuItem("Use 
fail-safe video mode"));
+                       menu->AddItem(item = new(nothrow) MenuItem("Use 
fail-safe video driver"));
                        item->SetType(MENU_ITEM_MARKABLE);
                        item->SetData(B_SAFEMODE_FAIL_SAFE_VIDEO_MODE);
                        item->SetHelpText("The system will use VESA mode and 
won't try to open any video graphics driver");
diff --git a/src/system/boot/platform/bios_ia32/menu.cpp 
b/src/system/boot/platform/bios_ia32/menu.cpp
index 6d59614..e47fef8 100644
--- a/src/system/boot/platform/bios_ia32/menu.cpp
+++ b/src/system/boot/platform/bios_ia32/menu.cpp
@@ -41,7 +41,7 @@ platform_add_menus(Menu* menu)
 
        switch (menu->Type()) {
                case MAIN_MENU:
-                       item = new(std::nothrow) MenuItem("Select fail-safe 
video mode",
+                       item = new(std::nothrow) MenuItem("Select fail-safe 
video driver",
                                video_mode_menu());
                        if (item != NULL) {
                                menu->AddItem(item);
@@ -53,7 +53,7 @@ platform_add_menus(Menu* menu)
                        break;
 
                case SAFE_MODE_MENU:
-                       item = new(std::nothrow) MenuItem("Use fail-safe video 
mode");
+                       item = new(std::nothrow) MenuItem("Use fail-safe video 
driver");
                        if (item != NULL) {
                                menu->AddItem(item);
                                item->SetType(MENU_ITEM_MARKABLE);
-- 
2.7.4


--Kj7319i9nmIyA2yE--

Other related posts:

  • » [PATCH] Fixes #8887 [haiku_loader] adjust fail-safe video mode help text (easy) - Rahul Jain