diff --git a/src/raspberrypi/devices/scsi_powerview.cpp b/src/raspberrypi/devices/scsi_powerview.cpp index a5b1e101..d31a4b22 100644 --- a/src/raspberrypi/devices/scsi_powerview.cpp +++ b/src/raspberrypi/devices/scsi_powerview.cpp @@ -32,6 +32,8 @@ #include "log.h" #include "controllers/scsidev_ctrl.h" +unsigned char SCSIPowerView::reverse_table[256]; + const BYTE SCSIPowerView::m_inquiry_response[] = { 0x03, 0x00, 0x01, 0x01, 0x46, 0x00, 0x00, 0x00, 0x52, 0x41, 0x44, 0x49, 0x55, 0x53, 0x20, 0x20, 0x50, 0x6F, 0x77, 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, @@ -74,7 +76,7 @@ SCSIPowerView::SCSIPowerView() : Disk("SCPV") // Default to one bit color (black & white) if we don't know any better - color_depth = eColorsNone; + color_depth = eColorsBW; }