diff options
| author | Tony Wasserka <NeoBrainX@gmail.com> | 2014-03-03 19:23:46 +0100 |
|---|---|---|
| committer | Tony Wasserka <NeoBrainX@gmail.com> | 2014-03-14 22:33:25 +0100 |
| commit | 6e65e02c9eaaa967da769e8a16bc5eee81bb002d (patch) | |
| tree | 5a13e51aecbabe6527f2e1ba97b5c6e672518124 /Source/Core/VideoCommon/ConstantManager.h | |
| parent | 6c2971eaf6544295f6331130db53e220a36875a2 (diff) | |
ConstantManager: Do not use single-element arrays.
Diffstat (limited to 'Source/Core/VideoCommon/ConstantManager.h')
| -rw-r--r-- | Source/Core/VideoCommon/ConstantManager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/ConstantManager.h b/Source/Core/VideoCommon/ConstantManager.h index 85630966c5..b03d2ced6d 100644 --- a/Source/Core/VideoCommon/ConstantManager.h +++ b/Source/Core/VideoCommon/ConstantManager.h @@ -19,7 +19,7 @@ struct PixelShaderConstants int4 indtexscale[2]; int4 indtexmtx[6]; int4 fogcolor; - int4 fogi[1]; + int4 fogi; float4 fogf[2]; // For pixel lighting |
