Skip to content

Commit 5366cc5

Browse files
committed
1.1.7
1 parent 72b3c89 commit 5366cc5

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
44
set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64")
55
set(CMAKE_CXX_VISIBILITY_PRESET hidden)
66

7-
project(DeltaruneTextboxes VERSION 1.1.6)
7+
project(DeltaruneTextboxes VERSION 1.1.7)
88

99
add_library(${PROJECT_NAME} SHARED
1010
src/FLAlertLayer.cpp

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### v1.1.7
2+
- removed custom keybinds support for Android 32bit since it crashes the game
3+
14
### v1.1.6
25
- very quick crashfix
36

mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"id": "timestepyt.deltarune_textboxes",
1010
"name": "Deltarune Textboxes",
11-
"version": "v1.1.6",
11+
"version": "v1.1.7",
1212
"developer": "TimeStepYT",
1313
"description": "Makes FLAlertLayers look like textboxes from Deltarune",
1414
"repository": "https://github.com/Reinmmar/DeltaruneTextboxes",

src/FLAlertLayer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ bool DeltaruneAlertLayer::ccTouchBegan(CCTouch* touch, CCEvent* event) {
246246
clickedOnButton(btn2, m_button2, 2);
247247
return ret;
248248
}
249-
#if defined(GEODE_IS_MACOS) || defined(DEBUG_MAC_INPUTS) || defined(GEODE_IS_ANDROID32)
249+
#if (defined(GEODE_IS_MACOS) || defined(DEBUG_MAC_INPUTS) || defined(GEODE_IS_ANDROID32))
250250
void DeltaruneAlertLayer::keyDown(enumKeyCodes key) {
251251
if (m_fields->incompatible) {
252252
FLAlertLayer::keyDown(key);

src/FLAlertLayer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class $modify(DeltaruneAlertLayer, FLAlertLayer) {
6767
void clickedOnButton(CCMenuItemSpriteExtra*, ButtonSprite*, int);
6868
bool ccTouchBegan(CCTouch*, CCEvent*) override;
6969

70-
#if defined(GEODE_IS_MACOS) || defined(DEBUG_MAC_INPUTS) || defined(GEODE_IS_ANDROID32)
70+
#if (defined(GEODE_IS_MACOS) || defined(DEBUG_MAC_INPUTS) || defined(GEODE_IS_ANDROID32))
7171
void keyDown(enumKeyCodes) override;
7272
#else
7373
void initCustomKeybinds();

0 commit comments

Comments
 (0)