Skip to content

Commit 2d6479c

Browse files
authored
Merge branch 'master' into linux-port
2 parents 2685866 + db84d8d commit 2d6479c

4 files changed

Lines changed: 3 additions & 4 deletions

File tree

CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,6 @@ target_link_libraries(SimpleGraphic
248248
LuaJIT::LuaJIT
249249
Microsoft.GSL::GSL
250250
re2::re2
251-
sol2
252251
Threads::Threads
253252
WebP::webpdecoder
254253
ZLIB::ZLIB

engine/render/r_main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1986,7 +1986,7 @@ void r_renderer_c::DoScreenshot(image_c* i, int type, const char* ext)
19861986
time_t curTime;
19871987
time(&curTime);
19881988
auto ssPath = std::filesystem::u8path(fmt::format(CFG_DATAPATH "Screenshots/{:%m%d%y_%H%M%S}.{}",
1989-
fmt::localtime(curTime), ext));
1989+
*std::localtime(&curTime), ext));
19901990

19911991
// Make folder if it doesn't exist
19921992
std::error_code ec;

vcpkg

Submodule vcpkg updated 9353 files

vcpkg-configuration.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"default-registry": {
33
"kind": "builtin",
4-
"baseline": "3d72d8c930e1b6a1b2432b262c61af7d3287dcd0"
4+
"baseline": "66c0373dc7fca549e5803087b9487edfe3aca0a1"
55
},
66
"registries": [
77
{

0 commit comments

Comments
 (0)