Codechange: Replaced SmallVector::Reset() with std::vector::clear() + shrink_to_fit()
This commit is contained in:
@@ -108,7 +108,8 @@ void MoveAllTextEffects(uint delta_ms)
|
||||
|
||||
void InitTextEffects()
|
||||
{
|
||||
_text_effects.Reset();
|
||||
_text_effects.clear();
|
||||
_text_effects.shrink_to_fit();
|
||||
}
|
||||
|
||||
void DrawTextEffects(DrawPixelInfo *dpi)
|
||||
|
Reference in New Issue
Block a user