diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2023-05-06 16:40:21 +0200 |
---|---|---|
committer | Jelle Raaijmakers <jelle@gmta.nl> | 2023-05-07 01:05:09 +0200 |
commit | d5f8dac2bd6b2b72719b0ed03954a5fa3bf8ed0a (patch) | |
tree | 2b67cd941fb06a1e8d8b932302fab8cfcc1a8ec2 | |
parent | ee47c0275e2ce130c4b8883cc71a84e6bdbf2403 (diff) | |
download | serenity-d5f8dac2bd6b2b72719b0ed03954a5fa3bf8ed0a.zip |
dungeonrush: Fix typo in patches
3 files changed, 4 insertions, 4 deletions
diff --git a/Ports/dungeonrush/patches/0001-chdir-to-the-resource-install-path-at-program-startu.patch b/Ports/dungeonrush/patches/0001-chdir-to-the-resource-install-path-at-program-startu.patch index 362925ae63..d0f0e47839 100644 --- a/Ports/dungeonrush/patches/0001-chdir-to-the-resource-install-path-at-program-startu.patch +++ b/Ports/dungeonrush/patches/0001-chdir-to-the-resource-install-path-at-program-startu.patch @@ -4,13 +4,13 @@ Date: Wed, 16 Jun 2021 11:23:34 +0200 Subject: [PATCH] chdir() to the resource install path at program startup The game tries to open its resource files using relative paths, and we -install them into /opt, so chdr() there. +install them into /opt, so chdir() there. --- src/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.c b/src/main.c -index 8fa842f..e16c35e 100644 +index 8fa842f951fa2cd0a365623d1b6650c536695f59..e16c35e81cc94af006dbb63b0329a60750bd6846 100644 --- a/src/main.c +++ b/src/main.c @@ -12,6 +12,8 @@ diff --git a/Ports/dungeonrush/patches/0002-Make-it-use-software-rendering.patch b/Ports/dungeonrush/patches/0002-Make-it-use-software-rendering.patch index b0513fe66e..edf13c8440 100644 --- a/Ports/dungeonrush/patches/0002-Make-it-use-software-rendering.patch +++ b/Ports/dungeonrush/patches/0002-Make-it-use-software-rendering.patch @@ -8,7 +8,7 @@ Subject: [PATCH] Make it use software rendering 1 file changed, 2 insertions(+) diff --git a/src/res.c b/src/res.c -index ef4945a..6c46184 100644 +index ef4945ab4d115c8d2877be4f74b4596e4cb37c77..6c46184f12e006a8a1258df5ed7772aa2407d88b 100644 --- a/src/res.c +++ b/src/res.c @@ -89,6 +89,8 @@ Mix_Music *bgms[AUDIO_BGM_SIZE]; diff --git a/Ports/dungeonrush/patches/ReadMe.md b/Ports/dungeonrush/patches/ReadMe.md index b5de758da6..00f1533ed2 100644 --- a/Ports/dungeonrush/patches/ReadMe.md +++ b/Ports/dungeonrush/patches/ReadMe.md @@ -5,7 +5,7 @@ chdir() to the resource install path at program startup The game tries to open its resource files using relative paths, and we -install them into /opt, so chdr() there. +install them into /opt, so chdir() there. ## `0002-Make-it-use-software-rendering.patch` |