mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
Replace all include guard ifdefs with "#pragma once"
This commit is contained in:
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user