mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-04 15:51:42 +00:00
fixed msvc compilation for __restrict__
svn-id: r15160
This commit is contained in:
parent
af77554dc3
commit
27946f1e86
@ -21,6 +21,10 @@
|
||||
#ifndef __SCALE2X_H
|
||||
#define __SCALE2X_H
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#define __restrict__
|
||||
#endif
|
||||
|
||||
typedef unsigned char scale2x_uint8;
|
||||
typedef unsigned short scale2x_uint16;
|
||||
typedef unsigned scale2x_uint32;
|
||||
|
@ -21,6 +21,10 @@
|
||||
#ifndef __SCALE3X_H
|
||||
#define __SCALE3X_H
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#define __restrict__
|
||||
#endif
|
||||
|
||||
typedef unsigned char scale3x_uint8;
|
||||
typedef unsigned short scale3x_uint16;
|
||||
typedef unsigned scale3x_uint32;
|
||||
|
Loading…
x
Reference in New Issue
Block a user