--- ray/src/util/do_options.tcl 1994/10/28 20:14:36 2.2 +++ ray/src/util/do_options.tcl 1995/10/17 21:28:09 2.6 @@ -5,17 +5,17 @@ proc amb_delete {} { # delete ambient file global radvar curmess - if {"$radvar(AMBFILE)" == {} || ! [file exists $radvar(AMBFILE)]} { + if {"$radvar(AMBFILE)" == {} || ! [file isfile $radvar(AMBFILE)]} { set curmess {No ambient file.} return } set hl [string length [exec getinfo < $radvar(AMBFILE)]] set fl [file size $radvar(AMBFILE)] - set nv [expr ($fl - $hl - 3) / 75] - if {$nv && [tk_dialog .dlg {Verification} \ + set nv [expr ($fl - $hl - 2) / 75] + if {$nv > 50 && [tk_dialog .dlg {Verification} \ "Really delete ambient file $radvar(AMBFILE)\ - with $nv indirect irradiances values?" \ - questhead 1 {Delete} {Cancel}]} { + with $nv indirect irradiance values?" \ + questhead 0 {Delete} {Cancel}]} { return 0 } if [catch {exec rm $radvar(AMBFILE) < /dev/null} curmess] {return 0}