(svn r18993) -Codechange: allow allocating multiple items in a SmallVector with one call.

This commit is contained in:
rubidium
2010-02-03 17:25:56 +00:00
parent e437362c7b
commit c75f19f40b
2 changed files with 9 additions and 5 deletions

View File

@@ -18,7 +18,7 @@
#include "sound_func.h"
#include "core/mem_func.hpp"
static SmallVector<SoundEntry, ORIGINAL_SAMPLE_COUNT> _sounds;
static SmallVector<SoundEntry, 8> _sounds;
/* Allocate a new Sound */