Browse Source

Correct relative system font load

Lily Carpenter 9 years ago
parent
commit
739f1233f3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/crypts-and-corpses.lisp

+ 1 - 1
src/crypts-and-corpses.lisp

@@ -410,7 +410,7 @@
410 410
   (terminal-open)
411 411
   (terminal-set "window: size=99x40, title='Crypts and Corpses'")
412 412
   (terminal-set (format nil "font: ~SDejaVuSansMono.ttf, size=16"
413
-                        (asdf:system-relative-pathname :crypts-and-corpses "fonts/")))
413
+                        (namestring (asdf:system-relative-pathname :crypts-and-corpses "fonts/"))))
414 414
   (intro-message)
415 415
   (main-loop)
416 416
   (terminal-close))