From d1eccab22dea27fec8f29748c351116c02b0e2f6 Mon Sep 17 00:00:00 2001 From: SMJSGaming Date: Sun, 1 Sep 2024 18:50:25 +0200 Subject: [PATCH] Fixed the deprecation message --- loader/include/Geode/ui/SimpleTextArea.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loader/include/Geode/ui/SimpleTextArea.hpp b/loader/include/Geode/ui/SimpleTextArea.hpp index 8d564e3f..0125b834 100644 --- a/loader/include/Geode/ui/SimpleTextArea.hpp +++ b/loader/include/Geode/ui/SimpleTextArea.hpp @@ -22,7 +22,7 @@ namespace geode { * * Contact me on Discord (\@smjs) if you have any questions, suggestions or bugs. */ - class GEODE_DLL [[deprecated("Use TextArea instead")]] SimpleTextArea : public cocos2d::CCNode { + class GEODE_DLL [[deprecated("Use TextAreaV2 instead")]] SimpleTextArea : public cocos2d::CCNode { public: static SimpleTextArea* create(const std::string& text, const std::string& font = "chatFont.fnt", const float scale = 1); static SimpleTextArea* create(const std::string& text, const std::string& font, const float scale, const float width);