Skip to content

Commit 79a2ef4

Browse files
committed
TextAlertPopup 5th arg jumpscare
1 parent 4a39bef commit 79a2ef4

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
### Changed
1111

1212
- No longer use `geode::Notification`, now use `rl::utils::createNotificationToast`
13+
- How levelIDs are stored when in LevelInfoLayer
14+
15+
### Fixed
16+
17+
- Weird 5th arg in `TextAlertPopup::create`
1318

1419
## [2.0.2] - 2024-03-06
1520

src/utils.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,7 @@ namespace rl
184184

185185
inline void createNotificationToast(CCLayer* layer, const std::string& str, float time, float yPosition)
186186
{
187-
// yeah don't ask me what this is, ask IDA 👍
188-
auto tap = TextAlertPopup::create(str, time, .6f, 0x96, "\x00\x00\x00\x00");
187+
auto tap = TextAlertPopup::create(str, time, .6f, 0x96, "bigFont.fnt");
189188
tap->setPositionY(yPosition);
190189

191190
layer->addChild(tap);

0 commit comments

Comments
 (0)