Not logged in
Overview
SHA1 Hash:c857cf32b611a365f622c1c9a49321e2bd339c55
Date: 2011-10-24 11:35:56
User: crc
Comment:hangman: attempt to load the console' vocabulary if not present
Timelines: family | ancestors | descendants | both | trunk
Other Links: files | manifest
Tags And Properties
Changes
[hide diffs]    [patch]

Modified hangman/graphics.retro from [8d65b530a6d3e8ff] to [6e7f65e6b35a0862].

@@ -3,10 +3,12 @@
 (  * Drawing routines.                                         )
 ( ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ )
 ( Copyright [c] 2010-11, Marc Simpson                          )
 ( License: ISC                                                 )
 ( ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ )
+
+needs console'
 
 ( --[ Drawing Routines ]-------------------------------------- )
 
 : bar ( xyn- ) [ ^console'at-xy ] dip [ '- putc ] times ;
 : col ( xyn- ) [ 2over ^console'at-xy '| putc 1+ ] times 2drop ;

Modified hangman/hangman.retro from [3a82cbbf743ea3d5] to [445abd42a07a88af].

@@ -3,10 +3,12 @@
 (  * Main game logic.                                          )
 ( ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ )
 ( Copyright [c] 2010-11, Marc Simpson                          )
 ( License: ISC                                                 )
 ( ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ )
+
+needs console'
 
 ( File inclusion will only work if you're running retro from   )
 ( the same directory as hangman.                               )
 
 include graphics.retro