diff options
Diffstat (limited to 'static')
-rw-r--r-- | static/logo/peach.rkt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/static/logo/peach.rkt b/static/logo/peach.rkt index 98e01e0..7460265 100644 --- a/static/logo/peach.rkt +++ b/static/logo/peach.rkt @@ -35,8 +35,8 @@ target)) ;; Exports the logo into PNG. -(define (png-export logo) - (send logo save-file "peach.png" 'png)) +(define (png-export logo size) + (send logo save-file (format "peach-~s.png" size) 'png)) ;; Peach logo as a bitmap. (define peach-logo (draw-logo 500)) @@ -45,4 +45,4 @@ (make-object image-snip% peach-logo) ;; Export logo to a PNG file. -(png-export peach-logo) +(png-export peach-logo 500) |