Skip to content

Commit c734260

Browse files
committed
typo
1 parent 31dc99d commit c734260

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Client/mods/deathmatch/logic/luadefs/CLuaEngineDefs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2641,7 +2641,7 @@ CLuaMultiReturn<int, int, int, int, int, int> CLuaEngineDefs::EngineStreamingGet
26412641
int normalIn, normalOut, farIn, farOut, maxSwaps, furthestInLimit;
26422642
pStreamer->GetStreamingLimits(normalIn, normalOut, farIn, farOut, maxSwaps, furthestInLimit);
26432643

2644-
return { normalIn, normalOut, farIn, farOut, maxSwaps, furthestInLimit };
2644+
return std::tuple(normalIn, normalOut, farIn, farOut, maxSwaps, furthestInLimit);
26452645
}
26462646

26472647
void CLuaEngineDefs::EngineStreamingResetLimits()

0 commit comments

Comments
 (0)