You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 19:41:11 +00:00
Merge pull request #52408 from GiantBlargg/fix-string-cast
Fix invalid string cast
This commit is contained in:
@@ -523,10 +523,10 @@ String DTRN(const String &p_text, const String &p_text_plural, int p_n, const St
|
||||
#define TTRGET(m_value) TTR(m_value)
|
||||
|
||||
#else
|
||||
#define TTR(m_value) (String())
|
||||
#define TTRN(m_value) (String())
|
||||
#define DTR(m_value) (String())
|
||||
#define DTRN(m_value) (String())
|
||||
#define TTR(m_value) String()
|
||||
#define TTRN(m_value) String()
|
||||
#define DTR(m_value) String()
|
||||
#define DTRN(m_value) String()
|
||||
#define TTRC(m_value) (m_value)
|
||||
#define TTRGET(m_value) (m_value)
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user