diff --git a/README b/README index 83fecd5..836f79f 100644 --- a/README +++ b/README @@ -24,3 +24,7 @@ c - configure keybindings The game code and assets are under Creative Commons Zero 1.0 Universal license. If other code or data is distributed alongside them, see the attached license.txt file for information about their licenses. + +Authors: +Ending screen - Teuer +Rest of the game - nortti diff --git a/bundle/main.lua b/bundle/main.lua index 487dce0..dfbd9ba 100644 --- a/bundle/main.lua +++ b/bundle/main.lua @@ -47,7 +47,7 @@ direction_keys['space'] = directions.inplace local control_keys = {quit = 'q', restart = 'r', configure = 'c', autoexplore = 'a'} local win_image = nil -local win_is_raster = false +local win_is_raster = true -- ------------------------------------------------------------------ -- Cavern generation @@ -1191,6 +1191,7 @@ function love.keypressed(key) last_key_pressed = key elseif key == 'pause' then debug = not debug + win_is_raster = not win_is_raster end end end diff --git a/bundle/win_image.png b/bundle/win_image.png index e69de29..e0222d9 100644 Binary files a/bundle/win_image.png and b/bundle/win_image.png differ diff --git a/win_image_alternate.png b/win_image_alternate.png new file mode 100644 index 0000000..b3be374 Binary files /dev/null and b/win_image_alternate.png differ