We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6902214 commit 828abf8Copy full SHA for 828abf8
1 file changed
src/engine/null/null_renderer.cpp
@@ -80,8 +80,8 @@ void RE_EndRegistration() { }
80
void RE_ClearScene() { }
81
void RE_AddRefEntityToScene( const refEntity_t * ) { }
82
void RE_SyncRefEntities( const std::vector<EntityUpdate>& ) {}
83
-std::vector<LerpTagSync> RE_SyncLerpTags( const std::vector<LerpTagUpdate>& ) {
84
- return {};
+std::vector<LerpTagSync> RE_SyncLerpTags( const std::vector<LerpTagUpdate>& in ) {
+ return std::vector<LerpTagSync>(in.size());
85
}
86
void RE_AddPolyToScene( qhandle_t, int, const polyVert_t* ) { }
87
void RE_AddPolysToScene( qhandle_t, int, const polyVert_t*, int ) { }
0 commit comments