Replace all include guard ifdefs with "#pragma once"

This commit is contained in:
lioncash
2014-02-10 13:54:46 -05:00
committed by Lioncash
parent a0a65a2906
commit d2038049f5
462 changed files with 676 additions and 2308 deletions

View File

@ -5,8 +5,7 @@
// Gekko related unions, structs, ...
#ifndef _GEKKO_H
#define _GEKKO_H
#pragma once
#include "Common.h"
@ -787,6 +786,3 @@ enum
inline s32 SignExt16(s16 x) {return (s32)(s16)x;}
inline s32 SignExt26(u32 x) {return x & 0x2000000 ? (s32)(x | 0xFC000000) : (s32)(x);}
#endif