diff --git a/changelog.md b/changelog.md index dd47904..ad0adba 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,8 @@ # BetterEdit 6 +## v6.8.0-alpha.5 + * Fix color trigger popup crashing (& also make HSV Preview more responsive) + ## v6.8.0-alpha.4 * Fix a bug with servers causing supporter popups to not work diff --git a/mod.json b/mod.json index 010d130..24adaef 100644 --- a/mod.json +++ b/mod.json @@ -1,5 +1,5 @@ { - "geode": "3.4.0", + "geode": "3.7.0", "version": "6.8.0-alpha.4", "gd": { "win": "2.206", diff --git a/src/features/backups/QuickSave.cpp b/src/features/backups/QuickSave.cpp index 4fa151e..7ffaa6f 100644 --- a/src/features/backups/QuickSave.cpp +++ b/src/features/backups/QuickSave.cpp @@ -20,7 +20,7 @@ static std::filesystem::path getAutoSaveDir() { } static bool CREATING_AUTO_SAVE = false; -void ::createAutoSave(LevelEditorLayer* lel) { +void createAutoSave(LevelEditorLayer* lel) { CREATING_AUTO_SAVE = true; fakeEditorPauseLayer(lel)->saveLevel(); CREATING_AUTO_SAVE = false;