early-access version 3571

This commit is contained in:
pineappleEA 2023-05-08 07:33:05 +02:00
parent 9071d9922e
commit 4d07ab877f
5 changed files with 6 additions and 7 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access yuzu emulator early access
============= =============
This is the source code for early-access 3569. This is the source code for early-access 3571.
## Legal Notice ## Legal Notice

View File

@ -218,7 +218,7 @@ public:
private: private:
void Submit(HLERequestContext& ctx) { void Submit(HLERequestContext& ctx) {
LOG_WARNING(Service_NIFM, "(STUBBED) called"); LOG_DEBUG(Service_NIFM, "(STUBBED) called");
if (state == RequestState::NotSubmitted) { if (state == RequestState::NotSubmitted) {
UpdateState(RequestState::OnHold); UpdateState(RequestState::OnHold);
@ -229,7 +229,7 @@ private:
} }
void GetRequestState(HLERequestContext& ctx) { void GetRequestState(HLERequestContext& ctx) {
LOG_WARNING(Service_NIFM, "(STUBBED) called"); LOG_DEBUG(Service_NIFM, "(STUBBED) called");
IPC::ResponseBuilder rb{ctx, 3}; IPC::ResponseBuilder rb{ctx, 3};
rb.Push(ResultSuccess); rb.Push(ResultSuccess);
@ -237,7 +237,7 @@ private:
} }
void GetResult(HLERequestContext& ctx) { void GetResult(HLERequestContext& ctx) {
LOG_WARNING(Service_NIFM, "(STUBBED) called"); LOG_DEBUG(Service_NIFM, "(STUBBED) called");
const auto result = [this] { const auto result = [this] {
const auto has_connection = Network::GetHostIPv4Address().has_value(); const auto has_connection = Network::GetHostIPv4Address().has_value();

View File

@ -356,7 +356,7 @@ NetworkInstance::~NetworkInstance() {
std::optional<IPv4Address> GetHostIPv4Address() { std::optional<IPv4Address> GetHostIPv4Address() {
const auto network_interface = Network::GetSelectedNetworkInterface(); const auto network_interface = Network::GetSelectedNetworkInterface();
if (!network_interface.has_value()) { if (!network_interface.has_value()) {
LOG_ERROR(Network, "GetSelectedNetworkInterface returned no interface"); LOG_DEBUG(Network, "GetSelectedNetworkInterface returned no interface");
return {}; return {};
} }

View File

@ -200,7 +200,7 @@ std::optional<NetworkInterface> GetSelectedNetworkInterface() {
}); });
if (res == network_interfaces.end()) { if (res == network_interfaces.end()) {
LOG_ERROR(Network, "Couldn't find selected interface \"{}\"", selected_network_interface); LOG_DEBUG(Network, "Couldn't find selected interface \"{}\"", selected_network_interface);
return std::nullopt; return std::nullopt;
} }

View File

@ -8,7 +8,6 @@
#include <cstddef> #include <cstddef>
#include <memory> #include <memory>
#include <mutex> #include <mutex>
#include <stop_token>
#include <utility> #include <utility>
#include <vector> #include <vector>