probable fix to the runtime error seen in drdr

svn: r18029
This commit is contained in:
Robby Findler 2010-02-09 15:15:11 +00:00
parent e581ac7bfd
commit 419a50860c
2 changed files with 1 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -85,7 +85,7 @@
(define (center base state x)
(define w (pict-height state))
(define d (quotient (- width w) 2))
(define d (floor (/ (- width w) 2)))
(pin-over base x d state))
(define width (pict-height bg))