mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-12 07:34:36 +00:00
- fixed GCC's 'unknown pragma' warnings in hqNx MMX implementation
This commit is contained in:
parent
1c5d0ccd65
commit
f8c38a0bbe
2 changed files with 4 additions and 0 deletions
|
@ -21,7 +21,9 @@
|
|||
#ifndef __HQNX_H__
|
||||
#define __HQNX_H__
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable:4799)
|
||||
#endif // _MSC_VER
|
||||
|
||||
#include "hqnx_asm_Image.h"
|
||||
|
||||
|
|
|
@ -24,7 +24,9 @@
|
|||
|
||||
#include <stdio.h>
|
||||
#pragma once
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable: 4103)
|
||||
#endif // _MSC_VER
|
||||
#pragma pack(1)
|
||||
|
||||
namespace HQnX_asm
|
||||
|
|
Loading…
Reference in a new issue