diff --git a/README.md b/README.md index c159f843d..dfba641d8 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 1759. +This is the source code for early-access 1760. ## Legal Notice diff --git a/src/common/host_memory.cpp b/src/common/host_memory.cpp index c1b193edd..4b974f4d2 100755 --- a/src/common/host_memory.cpp +++ b/src/common/host_memory.cpp @@ -11,7 +11,7 @@ #endif #define _WIN32_WINNT 0x0A00 // Windows 10 -#include +#include #include diff --git a/src/core/hle/kernel/k_server_session.cpp b/src/core/hle/kernel/k_server_session.cpp index b231f8183..528ca8614 100755 --- a/src/core/hle/kernel/k_server_session.cpp +++ b/src/core/hle/kernel/k_server_session.cpp @@ -123,7 +123,7 @@ ResultCode KServerSession::QueueSyncRequest(KThread* thread, Core::Memory::Memor strong_ptr->QueueSyncRequest(*parent, std::move(context)); return ResultSuccess; } else { - ASSERT(false, "strong_ptr was nullptr!"); + ASSERT_MSG(false, "strong_ptr was nullptr!"); } return ResultSuccess;