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:
parent
99fb1bee74
commit
8f5f62cf70
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue