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:
wrenczes@gmail.com
2010-11-20 06:34:13 +00:00
parent 3725958fc3
commit e0872b852d
3 changed files with 8 additions and 6 deletions
+2 -2
View File
@@ -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) {}
};