Skip to content

Commit a87d360

Browse files
committed
Override this merge.
1 parent 97a0941 commit a87d360

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Assets/JCSUnity/Scripts/GUI/JCS_TextDeltaNumber.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ private void UpdateTextRender()
222222
#if TMP_PRO
223223
if (mTextContainer == null && mTextMesh == null)
224224
#else
225-
if (mText == null)
225+
if (mTextContainer == null)
226226
#endif
227227
{
228228
JCS_Debug.LogError("Text slot cannot be null references...");

Assets/JCSUnity/Scripts/GUI/JCS_TextTimer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ public void UpdateTimeUI(float hour, float minute, float second)
200200
#if TMP_PRO
201201
if (mTextContainer == null && mTextMesh == null)
202202
#else
203-
if (mText == null)
203+
if (mTextContainer == null)
204204
#endif
205205
{
206206
JCS_Debug.LogError("Text slot cannot be null references...");

0 commit comments

Comments
 (0)