mirror of
				https://github.com/pbatard/rufus.git
				synced 2024-08-14 23:57:05 +00:00 
			
		
		
		
	[ui] fix UEFI/BIOS mode never being disabled once enabled
* Closes #635 * Also fix minor logic issue and trailing whitespaces
This commit is contained in:
		
							parent
							
								
									759599221c
								
							
						
					
					
						commit
						549bf731a6
					
				
					 4 changed files with 16 additions and 14 deletions
				
			
		|  | @ -1647,7 +1647,9 @@ DWORD WINAPI FormatThread(void* param) | |||
| 		} | ||||
| 		RefreshDriveLayout(hPhysicalDrive); | ||||
| 		goto out; | ||||
| 	} else if (IsChecked(IDC_BADBLOCKS)) { | ||||
| 	} | ||||
| 
 | ||||
| 	if (IsChecked(IDC_BADBLOCKS)) { | ||||
| 		do { | ||||
| 			// create a log file for bad blocks report. Since %USERPROFILE% may
 | ||||
| 			// have localized characters, we use the UTF-8 API.
 | ||||
|  |  | |||
|  | @ -3065,7 +3065,7 @@ relaunch: | |||
| 		// Alt-E => Enhanced installation mode (allow dual UEFI/BIOS mode and FAT32 for Windows)
 | ||||
| 		if ((msg.message == WM_SYSKEYDOWN) && (msg.wParam == 'E')) { | ||||
| 			allow_dual_uefi_bios = !allow_dual_uefi_bios; | ||||
| 			WriteSettingBool(SETTING_ENABLE_WIN_DUAL_EFI_BIOS, !allow_dual_uefi_bios); | ||||
| 			WriteSettingBool(SETTING_ENABLE_WIN_DUAL_EFI_BIOS, allow_dual_uefi_bios); | ||||
| 			PrintStatus2000(lmprintf(MSG_266), allow_dual_uefi_bios); | ||||
| 			SetMBRForUEFI(TRUE); | ||||
| 			continue; | ||||
|  |  | |||
							
								
								
									
										10
									
								
								src/rufus.rc
									
										
									
									
									
								
							
							
						
						
									
										10
									
								
								src/rufus.rc
									
										
									
									
									
								
							|  | @ -32,7 +32,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL | |||
| 
 | ||||
| IDD_DIALOG DIALOGEX 12, 12, 242, 376 | ||||
| STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | ||||
| CAPTION "Rufus 2.6.803" | ||||
| CAPTION "Rufus 2.6.804" | ||||
| FONT 8, "Segoe UI Symbol", 400, 0, 0x0 | ||||
| BEGIN | ||||
|     LTEXT           "Device",IDS_DEVICE_TXT,9,6,200,8 | ||||
|  | @ -319,8 +319,8 @@ END | |||
| // | ||||
| 
 | ||||
| VS_VERSION_INFO VERSIONINFO | ||||
|  FILEVERSION 2,6,803,0 | ||||
|  PRODUCTVERSION 2,6,803,0 | ||||
|  FILEVERSION 2,6,804,0 | ||||
|  PRODUCTVERSION 2,6,804,0 | ||||
|  FILEFLAGSMASK 0x3fL | ||||
| #ifdef _DEBUG | ||||
|  FILEFLAGS 0x1L | ||||
|  | @ -337,13 +337,13 @@ BEGIN | |||
|         BEGIN | ||||
|             VALUE "CompanyName", "Akeo Consulting (http://akeo.ie)" | ||||
|             VALUE "FileDescription", "Rufus" | ||||
|             VALUE "FileVersion", "2.6.803" | ||||
|             VALUE "FileVersion", "2.6.804" | ||||
|             VALUE "InternalName", "Rufus" | ||||
|             VALUE "LegalCopyright", "© 2011-2015 Pete Batard (GPL v3)" | ||||
|             VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html" | ||||
|             VALUE "OriginalFilename", "rufus.exe" | ||||
|             VALUE "ProductName", "Rufus" | ||||
|             VALUE "ProductVersion", "2.6.803" | ||||
|             VALUE "ProductVersion", "2.6.804" | ||||
|         END | ||||
|     END | ||||
|     BLOCK "VarFileInfo" | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue