[MSFS] Rename FS2020 to MSFS

This commit is contained in:
Roland Rossgotterer
2021-03-16 10:07:32 +01:00
committed by Mat Sutcliffe
parent 74679137d1
commit 7e04a2c40f
16 changed files with 66 additions and 54 deletions

View File

@@ -83,9 +83,9 @@ namespace BlackMisc
return getSimulator().testFlag(FG);
}
bool CSimulatorInfo::isFS2020() const
bool CSimulatorInfo::isMSFS() const
{
return getSimulator().testFlag(FS2020);
return getSimulator().testFlag(MSFS);
}
bool CSimulatorInfo::isAnySimulator() const
@@ -251,7 +251,7 @@ namespace BlackMisc
{
s |= P3D;
}
if (i.contains("fs2020")) { s |= FS2020; }
if (i.contains("msfs")) { s |= MSFS; }
return s;
}