By the way, for the linux users, here's a quick way to rename the files to the correct case via bash:
Code:
for files in *; do mv $files `echo ${files:0:1} | tr '[:lower:]' '[:upper:]'`${files:1}; done
Rename the banner.tga back to lower case by hand afterwards.