Skip to content

Commit

Permalink
how did i not see that
Browse files Browse the repository at this point in the history
  • Loading branch information
hiimjustin000 committed Aug 12, 2024
1 parent af29de3 commit 76ea278
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 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.6)
project(FakeRate VERSION 1.3.7)

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.7 (2024-08-11)
- Fixed a bug where the game would crash with More Difficulties disabled

## v1.3.6 (2024-08-10)
- Fixed a bug where More Difficulties difficulties would not display ever

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.6",
"version": "v1.3.7",
"id": "hiimjustin000.fake_rate",
"name": "Fake Rate",
"developer": "hiimjustin000",
Expand Down
4 changes: 2 additions & 2 deletions src/FREditPopup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ void FREditPopup::updateLabels() {
fmt::format("itzkiba.grandpa_demon/GrD_demon{}_text.png", m_grandpaDemonOverride - 1).c_str()));
m_grdSprite->setPosition(m_difficultySprite->getPosition());
m_grdSprite->setVisible(true);
m_mdSprite->setVisible(false);
if (m_mdSprite) m_mdSprite->setVisible(false);
m_grdInfinity->setPosition(m_difficultySprite->getPosition() + CCPoint { -0.4f, 14.0f });
m_grdInfinity->setVisible(m_grandpaDemonOverride == 5);
m_difficultySprite->setOpacity(0);
Expand All @@ -230,7 +230,7 @@ void FREditPopup::updateLabels() {
fmt::format("hiimjustin000.demons_in_between/DIB_{:02d}_btn2_001.png", m_demonsInBetweenOverride).c_str()));
m_dibSprite->setPosition(m_difficultySprite->getPosition() + FakeRate::getDIBOffset(m_demonsInBetweenOverride, GJDifficultyName::Long));
m_dibSprite->setVisible(true);
m_mdSprite->setVisible(false);
if (m_mdSprite) m_mdSprite->setVisible(false);
m_difficultySprite->setOpacity(0);
}
else m_dibSprite->setVisible(false);
Expand Down

0 comments on commit 76ea278

Please sign in to comment.