diff --git a/src/modules/ZoomIt/ZoomIt/PanoramaCapture.cpp b/src/modules/ZoomIt/ZoomIt/PanoramaCapture.cpp index 106aa825b3..eb0145c7f6 100644 --- a/src/modules/ZoomIt/ZoomIt/PanoramaCapture.cpp +++ b/src/modules/ZoomIt/ZoomIt/PanoramaCapture.cpp @@ -118,6 +118,16 @@ #include #if defined(_M_X64) || defined(_M_IX86) #include +#if defined(_M_IX86) +// _mm_cvtsi128_si64 is unavailable on 32-bit x86; emulate via _mm_storel_epi64. +inline __int64 _mm_cvtsi128_si64_compat( __m128i v ) +{ + __int64 r; + _mm_storel_epi64( reinterpret_cast<__m128i*>( &r ), v ); + return r; +} +#define _mm_cvtsi128_si64 _mm_cvtsi128_si64_compat +#endif #elif defined(_M_ARM64) #include #endif diff --git a/src/modules/ZoomIt/ZoomIt/ZoomIt.rc b/src/modules/ZoomIt/ZoomIt/ZoomIt.rc index 8772fca51c..cfc502b0c8 100644 --- a/src/modules/ZoomIt/ZoomIt/ZoomIt.rc +++ b/src/modules/ZoomIt/ZoomIt/ZoomIt.rc @@ -121,7 +121,7 @@ FONT 8, "MS Shell Dlg", 0, 0, 0x0 BEGIN DEFPUSHBUTTON "OK",IDOK,184,308,50,14 PUSHBUTTON "Cancel",IDCANCEL,241,308,50,14 - LTEXT "ZoomIt v10.1",IDC_VERSION,42,7,73,10 + LTEXT "ZoomIt v11.0",IDC_VERSION,42,7,73,10 LTEXT "Copyright \251 2006-2026 Mark Russinovich",IDC_COPYRIGHT,42,17,251,8 CONTROL "Sysinternals - www.sysinternals.com",IDC_LINK, "SysLink",WS_TABSTOP,42,26,150,9