Skip to content

Commit db84d8d

Browse files
authored
Merge pull request #97 from zao/chore/updates
2 parents 7fd8aca + 9471923 commit db84d8d

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
@@ -237,7 +237,6 @@ target_link_libraries(SimpleGraphic
237237
LuaJIT::LuaJIT
238238
Microsoft.GSL::GSL
239239
re2::re2
240-
sol2
241240
Threads::Threads
242241
WebP::webpdecoder
243242
ZLIB::ZLIB

engine/render/r_main.cpp

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

19891989
// Make folder if it doesn't exist
19901990
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)