mirror of https://github.com/PCSX2/pcsx2.git
Get Linux to compile again.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3303 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
e145f9dd67
commit
334eab37c5
|
@ -74,3 +74,7 @@ struct FixedInt
|
|||
|
||||
typedef FixedInt<256> Fixed256;
|
||||
typedef FixedInt<100> Fixed100;
|
||||
|
||||
#ifdef __LINUX__
|
||||
#include "FixedPointTypes.inl"
|
||||
#endif
|
||||
|
|
|
@ -23,8 +23,10 @@ const wxRect wxDefaultRect( wxDefaultCoord, wxDefaultCoord, wxDefaultCoord, wxDe
|
|||
// Implement FixedPointTypes (for lack of a better location, for now)
|
||||
|
||||
#include "FixedPointTypes.inl"
|
||||
#ifndef __LINUX__
|
||||
template FixedInt<100>;
|
||||
template FixedInt<256>;
|
||||
#endif
|
||||
|
||||
static int _calcEnumLength( const wxChar* const* enumArray )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue