| 6171 | } |
| 6172 | |
| 6173 | bool HasStringLanguageChanged ( const itemDef_t *item ) |
| 6174 | { |
| 6175 | if ( !item->text || item->text[0] == '\0' ) |
| 6176 | { |
| 6177 | return false; |
| 6178 | } |
| 6179 | |
| 6180 | int modificationCount; |
| 6181 | #ifdef JK2_MODE |
| 6182 | modificationCount = sp_language->modificationCount; |
| 6183 | #else |
| 6184 | modificationCount = se_language->modificationCount; |
| 6185 | #endif |
| 6186 | |
| 6187 | return item->asset != modificationCount; |
| 6188 | } |
| 6189 | |
| 6190 | /* |
| 6191 | ================= |
no outgoing calls
no test coverage detected