17 "types/brutal/maps/Intercepter.map"
3 "types/dummy/maps/Pace.map"
154 "types/moderate/maps/Sky Stone.map"
24 "types/moderate/maps/oco.map"
1 "types/solo/maps/GetSpeed2.map"
rustup override
does not work with Visual Studio, so I needed to set the default toolchain to stable-x86_64-pc-windows-msvc
so fix VS compilationrustup override
doesn't seem to work for the gnu toolchain eitherstr_timestamp_ex
, which results in an assertion error due to an incorrect time value being used when compiling with MSVC.
This is fixed by properly initializing the field and also by only calling str_timestamp_ex
when the time value will be rendered.
Closes #6579.
rustup override
does not work with Visual Studio, so I needed to set the default toolchain to stable-x86_64-pc-windows-msvc
so fix VS compilation cargo +<toolchain> <command>
to run the cargo command with the specified toolchain
(e.g. cargo +nightly build
). I don't have the full context so I don't know if it is applicablecargo +<toolchain> <command>
to run the cargo command with the specified toolchain
(e.g. cargo +nightly build
). I don't have the full context so I don't know if it is applicable rust-toolchain.toml
file, in the project directory https://rust-lang.github.io/rustup/overrides.html#the-toolchain-file52e1494
Remove unused CDataFileReader::Unload
function declaration - Robyt3
6b37c3d
Reorder map and datafile functions - Robyt3
5e215f6
Mark map and datafile functions as const
when possible - Robyt3
7273574
Add missing CMap::NumData
delegate function - Robyt3
cd9d0e5
Add default parameter values to CMap::GetItem
- Robyt3
cbde0bb
Use nullptr
instead of 0
- Robyt3
2f2c86c
Move variable declarations closer to usages - Robyt3
22df50c
Merge #6592 - bors[bot]#include <cstdint>
in src/game/server/gamecontext.cpp and then it compiled ;)