• R/O
  • SSH

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

This is a fork of Zandronum used on servers hosted by The Sentinels Playground (TSPG), Euroboros (EB), and Down Under Doomers (DUD).


Commit MetaInfo

Revision8eb5114f1b8549c34f8bf427a676884dcdd8f2c1 (tree)
Time2022-10-30 12:19:54
AuthorAdam Kaminski <kaminskiadam9@gmai...>
CommiterAdam Kaminski

Log Message

Fixed two erroneous lines in V_CleanPlayerName.

Change Summary

Incremental Difference

diff -r 4e2b0310c6f3 -r 8eb5114f1b85 src/v_text.cpp
--- a/src/v_text.cpp Sat Oct 22 10:08:42 2022 -0400
+++ b/src/v_text.cpp Sat Oct 29 23:19:54 2022 -0400
@@ -669,9 +669,9 @@
669669 // [AK] Ignore color codes, also taking into account those that use square brackets.
670670 if ( tempColorizedString[j] == TEXTCOLOR_ESCAPE )
671671 {
672- if (( String[++j] != '\0' ) && ( String[j] == '[' ))
672+ if (( tempColorizedString[++j] != '\0' ) && ( tempColorizedString[j] == '[' ))
673673 {
674- while (( String[j] != '\0') && ( String[j] != ']' ))
674+ while (( tempColorizedString[j] != '\0') && ( tempColorizedString[j] != ']' ))
675675 {
676676 j++;
677677 }