Skip to content

Commit 1f68357

Browse files
committed
Fix build error from invisible characters
1 parent 8c8c5e9 commit 1f68357

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Client/loader/MainFunctions.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1035,13 +1035,13 @@ void CheckDataFiles()
10351035
int iRelease;
10361036
};
10371037

1038-
        static const SIncompatibleVersion incompatibleVersions[] = {
1039-
            // The below entry (D3D9.dll 6.3.9600.17415) always crashes the user @ 0x0001F4B3 (CreateSurfaceLH).
1040-
            // Furthermore, it's not a graphical mod or functional. Some GTA:SA distributor just placed their own, outdated Win7 DLL in the folder.
1041-
            {6, 3, 9600, 17415},
1042-
            // The below entry (D3D9.dll 0.3.1.3) is a fully incompatible, modified ENB version ("DirectX 2.0") that crashes the user @ 0002A733
1043-
            {0, 3, 1, 3},
1044-
        };
1038+
static const SIncompatibleVersion incompatibleVersions[] = {
1039+
// The below entry (D3D9.dll 6.3.9600.17415) always crashes the user @ 0x0001F4B3 (CreateSurfaceLH).
1040+
// Furthermore, it's not a graphical mod or functional. Some GTA:SA distributor just placed their own, outdated Win7 DLL in the folder.
1041+
{6, 3, 9600, 17415},
1042+
// The below entry (D3D9.dll 0.3.1.3) is a fully incompatible, modified ENB version ("DirectX 2.0") that crashes the user @ 0002A733
1043+
{0, 3, 1, 3},
1044+
};
10451045

10461046
static bool bChecked = false;
10471047
if (!bChecked)

0 commit comments

Comments
 (0)