mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: All refactor in DiscImageChef.Decoders.
This commit is contained in:
@@ -34,12 +34,12 @@ namespace DiscImageChef.Decoders.SecureDigital
|
||||
{
|
||||
public static class VendorString
|
||||
{
|
||||
public static string Prettify(byte SDVendorID)
|
||||
public static string Prettify(byte sdVendorId)
|
||||
{
|
||||
switch(SDVendorID)
|
||||
switch(sdVendorId)
|
||||
{
|
||||
case 0xAA: return "QEMU";
|
||||
default: return $"Unknown manufacturer ID 0x{SDVendorID:X2}";
|
||||
default: return $"Unknown manufacturer ID 0x{sdVendorId:X2}";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user