diff options
author | Corbin Simpson <MostAwesomeDude@gmail.com> | 2008-07-18 11:24:14 -0700 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2008-08-25 06:19:24 -0400 |
commit | b6c9e2bb5365de82315c6814f915e57b0c4fa444 (patch) | |
tree | 52c90df0d4cc9c12383b321bf74bfa628c232bf7 /src/bicubic_table.py | |
parent | ca51f4f37e1dbf53bf7ffc0e8f612e9609e11209 (diff) |
Fixed typos in the bicubic texture tables. Whoops, looks like I'm still asleep.
Diffstat (limited to 'src/bicubic_table.py')
-rwxr-xr-x | src/bicubic_table.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bicubic_table.py b/src/bicubic_table.py index 45101173..d9b3c46b 100755 --- a/src/bicubic_table.py +++ b/src/bicubic_table.py @@ -29,10 +29,10 @@ def printrow(l, offset): l = texgen() -print "const float[] bicubic_tex = {" +print "static const float bicubic_tex_128[] = {" for i in range(0, 512, 4): print printrow(l, i) -print "\tNULL }" +print "\t0 };" |