| 411 | } |
| 412 | |
| 413 | void NPCGlyph::Discard() |
| 414 | { |
| 415 | en_npcglyph type = typ_glyph; |
| 416 | if (type > NPC_GLYPH_UNKNOWN && type < NPC_GLYPH_NOMORE) |
| 417 | { |
| 418 | g_cnt_activeGlyphs[type]--; |
| 419 | g_cnt_activeGlyphs[typ_glyph] = MAX(0, g_cnt_activeGlyphs[typ_glyph]); |
| 420 | } |
| 421 | |
| 422 | flg_glyph = 0; |
| 423 | } |
| 424 | |
| 425 | void NPCGlyph::PosSet(xVec3* pos) |
| 426 | { |
no outgoing calls
no test coverage detected