Skip to content

Commit

Permalink
I really gotta test stuff more
Browse files Browse the repository at this point in the history
  • Loading branch information
hiimjasmine00 committed Aug 12, 2024
1 parent 76ea278 commit 26f6797
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_OSX_ARCHITECTURES "x86_64;arm64")
set(CMAKE_CXX_VISIBILITY_PRESET hidden)

project(FakeRate VERSION 1.3.7)
project(FakeRate VERSION 1.3.8)

add_library(${PROJECT_NAME} SHARED
src/FakeRate.cpp
Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Fake Rate Changelog
## v1.3.8 (2024-08-11)
- Fixed a bug where selecting a difficulty face in the fake rate popup would not work with an override set

## v1.3.7 (2024-08-11)
- Fixed a bug where the game would crash with More Difficulties disabled

Expand Down
2 changes: 1 addition & 1 deletion mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"win": "2.206",
"mac": "2.206"
},
"version": "v1.3.7",
"version": "v1.3.8",
"id": "hiimjustin000.fake_rate",
"name": "Fake Rate",
"developer": "hiimjustin000",
Expand Down
2 changes: 2 additions & 0 deletions src/FREditPopup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,8 @@ void FRSetDifficultyPopup::createDifficultyToggle(CCMenu* menu, int difficulty,
if (sender == m_selected) return;
m_difficulty = difficulty;
m_moreDifficultiesOverride = moreDifficultiesOverride;
m_grandpaDemonOverride = 0;
m_demonsInBetweenOverride = 0;
FakeRate::toggle(m_selected->getNormalImage(), false);
FakeRate::toggle(sender->getNormalImage(), true);
m_selected = sender;
Expand Down

0 comments on commit 26f6797

Please sign in to comment.