From c581c12d3349578cc8204bca0365a7e4f4bf6793 Mon Sep 17 00:00:00 2001 From: Uwe Seimet <48174652+uweseimet@users.noreply.github.com> Date: Thu, 30 Sep 2021 19:37:12 +0200 Subject: [PATCH] Set SADI product name to SASI HD (#291) --- src/raspberrypi/devices/device_factory.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/raspberrypi/devices/device_factory.cpp b/src/raspberrypi/devices/device_factory.cpp index 21880855..a2ca0311 100644 --- a/src/raspberrypi/devices/device_factory.cpp +++ b/src/raspberrypi/devices/device_factory.cpp @@ -127,6 +127,7 @@ Device *DeviceFactory::CreateDevice(PbDeviceType type, const string& filename) case SAHD: device = new SASIHD(); device->SetSupportedLuns(2); + device->SetProduct("SASI HD"); ((Disk *)device)->SetSectorSizes(sector_sizes[SAHD]); break;