diff --git a/src/core/hle/service/friend/friend.cpp b/src/core/hle/service/friend/friend.cpp index 4aa92a9f47..794c54c211 100644 --- a/src/core/hle/service/friend/friend.cpp +++ b/src/core/hle/service/friend/friend.cpp @@ -279,7 +279,9 @@ private: } void GetUserPresenceView(HLERequestContext& ctx) { - LOG_DEBUG(Service_Friend, "(STUBBED) called"); + IPC::RequestParser rp{ctx}; + const auto uuid = rp.PopRaw(); + LOG_DEBUG(Service_Friend, "(STUBBED) called, uuid={}.", uuid.RawString()); u8 buf[0xe0]{}; ctx.WriteBuffer(buf); @@ -288,18 +290,6 @@ private: rb.Push(ResultSuccess); } - void GetUserPresenceView(HLERequestContext& ctx) { - IPC::RequestParser rp{ctx}; - const auto uuid = rp.PopRaw(); - - LOG_DEBUG(Service_Friend, "(STUBBED) called, uuid={}.", uuid.RawString()); - - // TODO (jarrodnorwell) - - IPC::ResponseBuilder rb{ctx, 2}; - rb.Push(ResultSuccess); - } - void GetPlayHistoryStatistics(HLERequestContext& ctx) { LOG_ERROR(Service_Friend, "(STUBBED) called, check in out"); diff --git a/src/video_core/dma_pusher.cpp b/src/video_core/dma_pusher.cpp index aaacccfa90..401329eea0 100644 --- a/src/video_core/dma_pusher.cpp +++ b/src/video_core/dma_pusher.cpp @@ -15,6 +15,12 @@ namespace Tegra { constexpr u32 MacroRegistersStart = 0xE00; constexpr u32 ComputeInline = 0x6D; +//start on PR#76 of Eden this is a unused variable in android (need to investigate) + +// Dummy function that uses ComputeInline +constexpr void UseComputeInline() { + static_cast(ComputeInline); // Suppress unused variable error +} DmaPusher::DmaPusher(Core::System& system_, GPU& gpu_, MemoryManager& memory_manager_, Control::ChannelState& channel_state_)