Skip to content
This repository was archived by the owner on Jan 11, 2026. It is now read-only.

Commit bf3091a

Browse files
committed
update info text about compiler version
1 parent 88268ac commit bf3091a

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

ccminer.cpp

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2907,10 +2907,15 @@ static int msver(void)
29072907
case 1800: version = 2013; break;
29082908
case 1900: version = 2015; break;
29092909
default:
2910-
if(_MSC_VER < 1920)
2910+
{
2911+
if (_MSC_VER < 1920)
29112912
version = 2017;
29122913
else
2913-
version = 2019;
2914+
if (_MSC_VER < 1930)
2915+
version = 2019;
2916+
else
2917+
version = 2022;
2918+
}
29142919
}
29152920
#else
29162921
version = 0;

0 commit comments

Comments
 (0)