select distinct r.Name, r.ID, r.Time, r.Timestamp, SUBSTRING(n.Server, 1, 3) from ((select distinct ID from record_teamrace where Map = 'NUT_short_race6' ORDER BY Time limit 20) as l) left join record_teamrace as r on l.ID = r.ID inner join record_race as n on r.Map = n.Map and r.Name = n.Name and r.Time = n.Time and r.GameID = n.GameID order by r.Time, r.ID, r.Name;
. Not sure why some of the distinct IDs from record_teamrace don't show up, we get exactly 20. I guess they don't have a corresponding game id, so maybe have to go by approximate timestamp after allcmake -DVIDEORECORDER=OFF ..
or download the following packages: libx264-dev libavfilter-dev libavdevice-dev libavformat-dev libavcodec-extra libavutil-dev
cmake ../ -DCMAKE_TOOLCHAIN_FILE=../cmake/toolchains/mingw64.toolchain
and then make -j(nproc)
.
Any ideas?
Thanks in advance.cmake ../ -DCMAKE_TOOLCHAIN_FILE=../cmake/toolchains/mingw64.toolchain
and then make -j(nproc)
.
Any ideas?
Thanks in advance. CVariableInt::Pack
some more according to upstream:
CVariableInt::Pack
and CVariableInt::Unpack
. Adjust tests and add tests with too small buffer sizes.
471bb44
Move NETSOCKET behind a pointer so it can grow - heinrich5991
3211b1d
Remove unused Flags
argument in network code - heinrich5991
a8664a0
Hide the recvmmsg as an implementation detail - heinrich5991
1a35595
Unify buffer handling in UDP sockets across operating systems - heinrich5991
3f222b4
Merge #4783 - bors[bot]