Fix test psp

This commit is contained in:
Maxime Gimeno 2021-02-03 15:40:58 +01:00
parent df50c4cd0a
commit 4c9cb65427
1 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ struct GetBlueMap{
}; };
unsigned short get(const GetBlueMap&, const PointWithColor& p) unsigned short get(const GetBlueMap&, const PointWithColor& p)
{ {
return p.second[3]; return p.second[2];
} }
struct GetAlphaMap{ struct GetAlphaMap{
@ -65,7 +65,7 @@ struct GetAlphaMap{
}; };
unsigned short get(const GetAlphaMap&, const PointWithColor& p) unsigned short get(const GetAlphaMap&, const PointWithColor& p)
{ {
return p.second[4]; return p.second[3];
} }
int main() int main()