]> icculus.org git repositories - divverent/nexuiz.git/blob - cfg-hierarchy.sh
Fix ambient sounds on evilspace. And added textures referenced by the shader. (taken...
[divverent/nexuiz.git] / cfg-hierarchy.sh
1 #!/bin/sh
2
3 prev=omg
4 for cfg in low med normal high ultra ultimate; do
5         echo "$prev.cfg -> $cfg.cfg:"
6         diff "$prev.cfg" "$cfg.cfg" | grep ^\>
7         echo
8         prev=$cfg
9 done