mirror of https://github.com/PCSX2/pcsx2.git
Two minor cosmetic fixes from the __aligned switchover.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1960 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
6412271470
commit
75d3c053ef
|
@ -408,7 +408,7 @@ __forceinline void xWrite( T val )
|
|||
Displacement += imm;
|
||||
return *this;
|
||||
}
|
||||
__noinline
|
||||
|
||||
__forceinline ModSibStrict<OperandType> operator+( const s32 imm ) const { return ModSibStrict<OperandType>( *this ).Add( imm ); }
|
||||
__forceinline ModSibStrict<OperandType> operator-( const s32 imm ) const { return ModSibStrict<OperandType>( *this ).Add( -imm ); }
|
||||
|
||||
|
|
|
@ -243,7 +243,7 @@ namespace vtlb_private
|
|||
// If it were smaller than a page we'd end up allowing execution rights on some
|
||||
// other vars additionally (bad!).
|
||||
//
|
||||
static __aligned(0x1000) u8 m_IndirectDispatchers[0x1000];
|
||||
static __pagealigned u8 m_IndirectDispatchers[0x1000];
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// mode - 0 for read, 1 for write!
|
||||
|
|
Loading…
Reference in New Issue