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:
arcum42 2010-06-25 12:17:29 +00:00
parent e145f9dd67
commit 334eab37c5
2 changed files with 6 additions and 0 deletions

View File

@ -74,3 +74,7 @@ struct FixedInt
typedef FixedInt<256> Fixed256;
typedef FixedInt<100> Fixed100;
#ifdef __LINUX__
#include "FixedPointTypes.inl"
#endif

View File

@ -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 )
{