Skip to content

Commit

Permalink
Compile error in Completed Game (example) corrected. Background image…
Browse files Browse the repository at this point in the history
… file name was wrpng
  • Loading branch information
chrisstephenson committed Jul 22, 2018
1 parent 52016db commit 636b214
Showing 1 changed file with 2 additions and 2 deletions.
@@ -1,6 +1,6 @@
;; The first three lines of this file were inserted by DrRacket. They record metadata
;; about the language level of this file in a form that our tools can easily process.
#reader(lib "htdp-beginner-reader.ss" "lang")((modname CompletedGame) (read-case-sensitive #t) (teachpacks ()) (htdp-settings #(#t constructor repeating-decimal #f #t none #f ())))
#reader(lib "htdp-beginner-reader.ss" "lang")((modname CompletedGame) (read-case-sensitive #t) (teachpacks ()) (htdp-settings #(#t constructor repeating-decimal #f #t none #f () #f)))
(require "Teachpacks/bootstrap-teachpack.rkt")


Expand All @@ -22,7 +22,7 @@
(define NEXT (make-world "asleep" 40 210 580 820 100))

;; GRAPHICS
(define BACKGROUND (bitmap "Teachpacks/teachpack-images/BG.jpg"))
(define BACKGROUND (bitmap "Teachpacks/teachpack-images/bg.jpg"))
(define DANGER (scale .7 (bitmap "Teachpacks/teachpack-images/wumpus.png")))
(define FLOCK (bitmap "Teachpacks/teachpack-images/bats.png"))
(define PLAYER (scale .7 (bitmap "Teachpacks/teachpack-images/archer.png")))
Expand Down

0 comments on commit 636b214

Please sign in to comment.