Fixed the PSP build. Turns out that the make file wasn't properly cleaning out the .pch file when running make clean. Also renamed JgeRect to JRect for consistency with other class definitions in JTypes.
This commit is contained in:
@@ -508,7 +508,7 @@ public:
|
||||
|
||||
|
||||
//------------------------------------------------------------------------------------------------
|
||||
class JgeRect
|
||||
class JRect
|
||||
{
|
||||
public:
|
||||
int x;
|
||||
@@ -517,7 +517,7 @@ public:
|
||||
int height;
|
||||
|
||||
public:
|
||||
JgeRect(int _x, int _y, int _width, int _height): x(_x), y(_y), width(_width), height(_height) {}
|
||||
JRect(int _x, int _y, int _width, int _height): x(_x), y(_y), width(_width), height(_height) {}
|
||||
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user