diff options
author | Arnavion <arnavion@gmail.com> | 2015-11-26 00:05:38 -0800 |
---|---|---|
committer | Arnavion <arnavion@gmail.com> | 2015-11-26 00:05:38 -0800 |
commit | eab580408cb383ec97b8d3a78d1a9d97cf7ebf2b (patch) | |
tree | 585b038e7f870d8bd9e38d4ed7196e4d4982195b | |
parent | 26d3461f466ec320bb051cdb6f61ddf1e699bddc (diff) |
installer: Fixed VS2015 CRT DLL name.
-rw-r--r-- | win32/installer/hexchat.iss.tt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/installer/hexchat.iss.tt b/win32/installer/hexchat.iss.tt index fd758386..99571e20 100644 --- a/win32/installer/hexchat.iss.tt +++ b/win32/installer/hexchat.iss.tt @@ -225,7 +225,7 @@ end; ///////////////////////////////////////////////////////////////////// function CheckVCInstall(): Boolean; begin - Result := FileExists(GetSysDir() + 'msvcr140.dll');; + Result := FileExists(GetSysDir() + 'vcruntime140.dll');; end; ///////////////////////////////////////////////////////////////////// |