Fixed compiler errors

This commit is contained in:
Tony Kuker 2022-01-21 03:03:07 +00:00
parent 0fcded84d0
commit 9bcc3d09a7
1 changed files with 3 additions and 1 deletions

View File

@ -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;
}