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;