mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-29 22:15:21 -04:00
[ui] fix percent not being displayed on slow format
This commit is contained in:
parent
996d4254b3
commit
1b02181f74
5 changed files with 15 additions and 15 deletions
|
@ -46,7 +46,7 @@
|
|||
|
||||
extern StrArray DriveId, DriveName, DriveLabel, DriveHub;
|
||||
extern uint32_t DrivePort[MAX_DRIVES];
|
||||
extern BOOL enable_HDDs, use_fake_units, enable_vmdk, usb_debug, list_non_usb_removable_drives, is_me;
|
||||
extern BOOL enable_HDDs, use_fake_units, enable_vmdk, usb_debug, list_non_usb_removable_drives, its_a_me_mario;
|
||||
|
||||
/*
|
||||
* Get the VID, PID and current device speed
|
||||
|
@ -782,7 +782,7 @@ BOOL GetDevices(DWORD devnum)
|
|||
static_strcpy(str, "????:????"); // Couldn't figure VID:PID
|
||||
} else {
|
||||
// because I don't want to end up erasing this specific device of mine by accident
|
||||
if (is_me && (props.vid == 0x0525) && (props.pid == 0x622b))
|
||||
if (its_a_me_mario && (props.vid == 0x0525) && (props.pid == 0x622b))
|
||||
continue;
|
||||
static_sprintf(str, "%04X:%04X", props.vid, props.pid);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue