Switch order ABCX -> CBAX in visualizer

This makes it so that the youngest file is
always more left, and older files are always
more right.
This commit is contained in:
Kresten Krab Thorup 2012-04-22 23:53:31 +02:00
parent 99fb1bee74
commit 8f5f62cf70

View file

@ -54,8 +54,8 @@ function dynamic() {
while true ; do
s=""
for ((i=7; i<25; i++)) ; do
if [ -f "A-$i.data" ] ; then
s="${s}A"
if [ -f "C-$i.data" ] ; then
s="${s}C"
else
s="$s "
fi
@ -64,8 +64,8 @@ function dynamic() {
else
s="$s "
fi
if [ -f "C-$i.data" ] ; then
s="${s}C"
if [ -f "A-$i.data" ] ; then
s="${s}A"
else
s="$s "
fi