convenience-function for the main GetString call...
| 986 | // convenience-function for the main GetString call... |
| 987 | // |
| 988 | const char *SE_GetString( const char *psPackageReference, const char *psStringReference) |
| 989 | { |
| 990 | char sReference[256]; // will always be enough, I've never seen one more than about 30 chars long |
| 991 | |
| 992 | Com_sprintf(sReference, sizeof(sReference),"%s_%s", psPackageReference, psStringReference); |
| 993 | |
| 994 | return SE_GetString( Q_strupr(sReference) ); |
| 995 | } |
| 996 | |
| 997 | |
| 998 | const char *SE_GetString( const char *psPackageAndStringReference ) |
no test coverage detected