From 98ad73967c026501663393df0f6a65023cdeec95 Mon Sep 17 00:00:00 2001 From: MCJack123 Date: Thu, 26 Jan 2023 18:40:20 -0500 Subject: [PATCH] v2.7.3: Enabled updates, renamed touch event --- src/termsupport.cpp | 2 +- src/util.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/termsupport.cpp b/src/termsupport.cpp index dcdf2c87..b93019b3 100644 --- a/src/termsupport.cpp +++ b/src/termsupport.cpp @@ -916,7 +916,7 @@ std::string termGetEvent(lua_State *L) { lua_pushinteger(L, y); lua_pushinteger(L, e.tfinger.fingerId); switch (e.type) { - case SDL_FINGERDOWN: return "_CCPC_finger_tap"; + case SDL_FINGERDOWN: return "_CCPC_finger_touch"; case SDL_FINGERUP: return "_CCPC_finger_up"; case SDL_FINGERMOTION: return "_CCPC_finger_drag"; } diff --git a/src/util.hpp b/src/util.hpp index 083fe30d..d1c6dfde 100644 --- a/src/util.hpp +++ b/src/util.hpp @@ -28,7 +28,7 @@ extern "C" { #define CRAFTOSPC_VERSION "v2.7.3" #define CRAFTOSPC_CC_VERSION "1.102.2" -#define CRAFTOSPC_INDEV true +#define CRAFTOSPC_INDEV false using path_t = std::filesystem::path; namespace fs = std::filesystem;