Skip to content

Commit 933cc41

Browse files
committed
Updating README.md with a gameplay screenshot
1 parent d915e17 commit 933cc41

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
![](screenshot.gif)
44

5+
<img src ="gameplay.png" width="1080" height="740"/>
6+
57
This is a near exact **Zig port** of the [original DungeonRush `C-based`](https://github.com/rapiz1/DungeonRush) rogue-like game running on SDL2 originally developed by @rapiz1.
68

79
## Status

gameplay.png

1.26 MB
Loading

zsrc/render.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ pub fn renderAnimation(a: ?*tps.Animation) void {
479479
// When left-shift key is held down (eXtreme Developer Mode)
480480
// Show the various debug bounding boxes of the sprites.
481481
const state = c.SDL_GetKeyboardState(null);
482-
if (state[c.SDL_SCANCODE_LSHIFT] > 0) {
482+
if (state[c.SDL_SCANCODE_SPACE] > 0) {
483483
if (ani.at == .AT_BOTTOM_CENTER) {
484484
var tmp: c.SDL_Rect = undefined;
485485
var fake: spr.Sprite = undefined;

0 commit comments

Comments
 (0)