Browse Source

Update size of window and size of font

Lily Carpenter 9 years ago
parent
commit
d3a20d2303
1 changed files with 4 additions and 4 deletions
  1. 4 4
      crypts-and-corpses.lisp

+ 4 - 4
crypts-and-corpses.lisp

@@ -55,8 +55,8 @@
55 55
 
56 56
 (defun intro-message ()
57 57
   (loop as key = (terminal-read) do
58
-    (terminal-print 40 21  "Crypts and Corpses")
59
-    (terminal-print 39 22 "Press enter to start")
58
+    (terminal-print 40 16  "Crypts and Corpses")
59
+    (terminal-print 39 17 "Press enter to start")
60 60
     (terminal-refresh)
61 61
         until (= key bearlibterminal-ffi:+tk-enter+)))
62 62
 
@@ -93,8 +93,8 @@
93 93
 
94 94
 (defun start ()
95 95
   (terminal-open)
96
-  (terminal-set "window: size=100x50, title='Crypts and Corpses'")
97
-  (terminal-set "font: ./fonts/DejaVuSansMono.ttf, size=12")
96
+  (terminal-set "window: size=100x40, title='Crypts and Corpses'")
97
+  (terminal-set "font: ./fonts/DejaVuSansMono.ttf, size=16")
98 98
   (intro-message)
99 99
   (main-loop)
100 100
   (terminal-close))