Fixed a typo in the setSubPixelShift in the FXAA filter that was causing a crash

This commit is contained in:
Nehon 2014-10-29 09:11:28 +01:00
parent 6e287d0ef2
commit 73b7061b0b

@ -85,7 +85,7 @@ public class FXAAFilter extends Filter {
public void setSubPixelShift(float subPixelShift) {
this.subPixelShift = subPixelShift;
if (material != null) {
material.setFloat("SubPixelShif", this.subPixelShift);
material.setFloat("SubPixelShift", this.subPixelShift);
}
}