Fix pixelshader constant offsets.

This commit is contained in:
Scott Mansell 2015-01-03 09:30:52 +13:00
parent 88c7afd315
commit 6d5065c58d
1 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,8 @@
#define C_INDTEXMTX (C_INDTEXSCALE + 2) //21
#define C_FOGCOLOR (C_INDTEXMTX + 6) //27
#define C_FOGI (C_FOGCOLOR + 1) //28
#define C_FOGF (C_FOGI + 2) //29
#define C_ZSLOPE (C_FOGF + 1) //31
#define C_FOGF (C_FOGI + 1) //29
#define C_ZSLOPE (C_FOGF + 2) //31
#define C_EFBSCALE (C_ZSLOPE + 1) //32
#define C_PENVCONST_END (C_EFBSCALE + 1)