Put SwizzlePlot in the WFont header.

This commit is contained in:
xawotihs
2015-10-10 18:23:59 +02:00
parent 954bba274c
commit c83a476ebe
2 changed files with 4 additions and 1 deletions

View File

@@ -201,4 +201,7 @@ public:
void FormatText(string &s, vector<string>& output);
};
#if defined (PSP)
void SwizzlePlot(u8* out, PIXEL_TYPE color, int i, int j, unsigned int width);
#endif
#endif

View File

@@ -247,7 +247,7 @@ WFBFont::~WFBFont()
}
#if defined (PSP)
static void SwizzlePlot(u8* out, PIXEL_TYPE color, int i, int j, unsigned int width)
void SwizzlePlot(u8* out, PIXEL_TYPE color, int i, int j, unsigned int width)
{
unsigned int rowblocks = (width >> 4);