| 37 | */ |
| 38 | |
| 39 | const char *SV_GetStringEdString(char *refSection, char *refName) |
| 40 | { |
| 41 | //Well, it would've been lovely doing it the above way, but it would mean mixing |
| 42 | //languages for the client depending on what the server is. So we'll mark this as |
| 43 | //a stringed reference with @@@ and send the refname to the client, and when it goes |
| 44 | //to print it will get scanned for the stringed reference indication and dealt with |
| 45 | //properly. |
| 46 | static char text[1024]={0}; |
| 47 | Com_sprintf(text, sizeof(text), "@@@%s", refName); |
| 48 | return text; |
| 49 | } |
| 50 | |
| 51 | /* |
| 52 | ================== |
no test coverage detected