Skip to content

Commit e7f25fd

Browse files
committed
1.2.9
1 parent 8f0d9a1 commit e7f25fd

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
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.2.8)
7+
project(DeltaruneTextboxes VERSION 1.2.9)
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.2.9
2+
- Fixed the crash that was born due to the fix
3+
14
### v1.2.8
25
- Fixed a bug where the first dialog doesn't appear
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.2.8",
11+
"version": "v1.2.9",
1212
"developer": "TimeStepYT",
1313
"description": "Makes Popups look like Deltarune",
1414
"links": {

src/DialogLayer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
bool DeltaruneDialogLayer::init(DialogObject* dialogObject, CCArray* objectsOriginal, int p2) {
55
CCArray* objects = CCArray::create();
6-
objects->addObjectsFromArray(objectsOriginal);
6+
if (objectsOriginal) objects->addObjectsFromArray(objectsOriginal);
77
if (!DialogLayer::init(dialogObject, objectsOriginal, p2)) return false;
88

99
m_fields->dialogObject = dialogObject;

0 commit comments

Comments
 (0)