================= idDeclLocal::GetText ================= */
| 1892 | ================= |
| 1893 | */ |
| 1894 | void idDeclLocal::GetText( char *text ) const { |
| 1895 | #ifdef USE_COMPRESSED_DECLS |
| 1896 | HuffmanDecompressText( text, textLength, (byte *)textSource, compressedLength ); |
| 1897 | #else |
| 1898 | memcpy( text, textSource, textLength+1 ); |
| 1899 | #endif |
| 1900 | } |
| 1901 | |
| 1902 | /* |
| 1903 | ================= |
no test coverage detected