From e476c52aa3acfc391e5fe0bd6fb5ba2dedbb0d6b Mon Sep 17 00:00:00 2001 From: Filip Gawin Date: Thu, 13 Jun 2019 13:58:34 +0200 Subject: [PATCH 1/2] Fix typo in link to appveyor's account --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e6aa8d07..0d6fe00a 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ parts of the game [one by one](https://en.wikipedia.org/wiki/Ship_of_Theseus) such that we have a working game at all times. Apparently you can download a binary of the latest version here: -[Debug](https://ci.appveyor.com/api/projects/app/re3/artifacts/bin/DebugCI/re3.dll?branch=master&job=Configuration%3A+DebugCI), -[Release](https://ci.appveyor.com/api/projects/app/re3/artifacts/bin/ReleaseCI/re3.dll?branch=master&job=Configuration%3A+ReleaseCI). +[Debug](https://ci.appveyor.com/api/projects/aap/re3/artifacts/bin/DebugCI/re3.dll?branch=master&job=Configuration%3A+DebugCI), +[Release](https://ci.appveyor.com/api/projects/aap/re3/artifacts/bin/ReleaseCI/re3.dll?branch=master&job=Configuration%3A+ReleaseCI). Build status: [![Build status](https://ci.appveyor.com/api/projects/status/hyiwgegks122h8jg?svg=true)](https://ci.appveyor.com/project/aap/re3/branch/master) From d08912e905003fcb76958450e4c990bcf5b3d0ab Mon Sep 17 00:00:00 2001 From: Filip Gawin Date: Thu, 13 Jun 2019 14:27:29 +0200 Subject: [PATCH 2/2] Fix value of CReplay mode --- src/control/Replay.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/control/Replay.h b/src/control/Replay.h index 331cc44f..5d63db1f 100644 --- a/src/control/Replay.h +++ b/src/control/Replay.h @@ -5,7 +5,7 @@ class CReplay public: static void Display(void); enum { - MODE_1 + MODE_1 = 1 }; static uint8 &Mode;