mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2024-11-15 00:31:54 +00:00
VC 2013 seems to do alright without the inline assembly in resample.c
This commit is contained in:
parent
39d3485abc
commit
0b7e037e03
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ int dumb_resampling_quality = DUMB_RQ_CUBIC;
|
|||
|
||||
|
||||
|
||||
#if !defined(_MSC_VER) || !defined(_M_IX86)
|
||||
#if !defined(_MSC_VER) || !defined(_M_IX86) || _MSC_VER >= 1800
|
||||
//#define MULSC(a, b) ((int)((LONG_LONG)(a) * (b) >> 16))
|
||||
//#define MULSC(a, b) ((a) * ((b) >> 2) >> 14)
|
||||
#define MULSCV(a, b) ((int)((LONG_LONG)(a) * (b) >> 32))
|
||||
|
|
Loading…
Reference in a new issue