Compare commits

..

1 Commits

Author SHA1 Message Date
9052daab5c
maint: update Premake5 2025-04-11 11:10:05 +02:00
10 changed files with 12 additions and 10 deletions

2
deps/GSL vendored

@ -1 +1 @@
Subproject commit 272463043ef3e442f6c80a530d3dd38ee6781381 Subproject commit 3325bbd33d24d1f8f5a0f69e782c92ad5a39a68e

2
deps/asmjit vendored

@ -1 +1 @@
Subproject commit cfc9f813cc6ccda63cad872edb32b38e0662bedb Subproject commit e8c8e2e48a1a38154c8e8864eb3bc61db80a1e31

2
deps/gsc-tool vendored

@ -1 +1 @@
Subproject commit 616595f8e0dd62d6d57ed7a4ef7635a4c65e5dde Subproject commit 2d9781ce0ce9e8551eaf040d7761fd986f33cfdc

2
deps/libtomcrypt vendored

@ -1 +1 @@
Subproject commit 427e0551c0e27c1ef9a3aa969310a895163631ba Subproject commit a6b9aff7aab857fe1b491710a5c5b9e2be49cb08

2
deps/libtommath vendored

@ -1 +1 @@
Subproject commit 5809141a3a6ec1bf3443c927c02b955e19224016 Subproject commit e823b0c34cea291bdb94d672731e1c1f08525557

2
deps/minhook vendored

@ -1 +1 @@
Subproject commit c1a7c3843bd1a5fe3eb779b64c0d823bca3dc339 Subproject commit c3fcafdc10146beb5919319d0683e44e3c30d537

2
deps/rapidjson vendored

@ -1 +1 @@
Subproject commit d621dc9e9c77f81e5c8a35b8dcc16dcd63351321 Subproject commit 24b5e7a8b27f42fa16b96fc70aade9106cf7102f

2
deps/zlib vendored

@ -1 +1 @@
Subproject commit ef24c4c7502169f016dcd2a26923dbaf3216748c Subproject commit 5a82f71ed1dfc0bec044d9702463dbdf84ea3b71

View File

@ -268,7 +268,7 @@ filter "configurations:Release"
buildoptions {"/GL"} buildoptions {"/GL"}
linkoptions {"/IGNORE:4702", "/LTCG"} linkoptions {"/IGNORE:4702", "/LTCG"}
defines {"NDEBUG"} defines {"NDEBUG"}
flags {"FatalCompileWarnings"} fatalwarnings {"All"}
filter {} filter {}
filter "configurations:Debug" filter "configurations:Debug"

View File

@ -26,6 +26,8 @@ namespace steam_proxy
ownership_state state_; ownership_state state_;
utils::binary_resource runner_file(RUNNER, "runner.exe"); utils::binary_resource runner_file(RUNNER, "runner.exe");
bool is_disabled() { return true; }
} }
class component final : public component_interface class component final : public component_interface
@ -33,7 +35,7 @@ namespace steam_proxy
public: public:
void post_load() override void post_load() override
{ {
if (game::environment::is_dedi()) if (game::environment::is_dedi() || is_disabled())
{ {
return; return;
} }