From c30930243af3d1770e962f39e82ef9ca34971d98 Mon Sep 17 00:00:00 2001 From: Christopher Roy Bratusek Date: Fri, 18 May 2012 21:57:46 +0200 Subject: [PATCH] hotfix in installer --- installer/source/menu.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/installer/source/menu.cpp b/installer/source/menu.cpp index 4fb5d42..e35e89c 100644 --- a/installer/source/menu.cpp +++ b/installer/source/menu.cpp @@ -237,9 +237,9 @@ int menu_install_uninstall(int install) Con_FgColor(7, 1); printf("\x1b[%i;%iH", startpos_x +2, startpos_y); - if(install == 0) + if(install == 1) printf("Install the HomebrewFilter now"); - else if(install == 1) + else if(install == 2) printf("Uninstall the HomebrewFilter now"); else if(install == 2) printf("Reinstall the HomebrewFilter now"); @@ -295,9 +295,9 @@ int menu_install_uninstall(int install) switch(scrollpos) { case 0: - if(install == 0) + if(install == 1) return MENU_INSTALLING; - else if(install == 1) + else if(install == 0) return MENU_UNINSTALLING; else if(install == 2) return MENU_REINSTALLING;