1
0
Fork 0

Fix effc++ warnings in drives.cpp

This commit is contained in:
Patryk Obara 2019-12-31 21:45:26 +01:00 committed by Patryk Obara
parent 8da42c5983
commit 2694aca2b2
3 changed files with 9 additions and 12 deletions

View file

@ -44,8 +44,8 @@ public:
private:
static struct DriveInfo {
std::vector<DOS_Drive*> disks;
Bit32u currentDisk;
std::vector<DOS_Drive*> disks = {};
int currentDisk = 0;
} driveInfos[DOS_DRIVES];
static int currentDrive;