stub more stuff the 3DS requests
Some checks failed
Build and Test / sonic-transformed (push) Has been cancelled
Build and Test / puyopuyo (push) Has been cancelled
Build and Test / splatoon-testfire (push) Has been cancelled
Build and Test / wii-u-chat (push) Has been cancelled
Build and Test / super-mario-maker (push) Has been cancelled
Build and Test / splatoon (push) Has been cancelled
Build and Test / fast-racing-neo (push) Has been cancelled
Build and Test / mario-tennis (push) Has been cancelled
Build and Test / minecraft-wiiu (push) Has been cancelled
Build and Test / wii-sports-club (push) Has been cancelled
Build and Test / friends (push) Has been cancelled

This commit is contained in:
red binder 2026-06-23 12:14:03 +02:00
commit 54d0339f48

View file

@ -128,7 +128,7 @@ impl FriendsManager {
// ALL of this is stubbed
impl Friends3DS for FriendsUser {
async fn update_profile(&self, profile: MyProfile) -> Result<(), ErrorCode> {
Err(ErrorCode::Core_NotImplemented)
Ok(())
}
async fn update_mii(&self, profile: Mii) -> Result<(), ErrorCode> {
@ -140,7 +140,7 @@ impl Friends3DS for FriendsUser {
}
async fn update_played_games(&self, profile: Vec<PlayedGame>) -> Result<(), ErrorCode> {
Err(ErrorCode::Core_NotImplemented)
Ok(())
}
async fn update_preference(&self, show_online_status: bool, show_current_title: bool, block_friend_requests: bool) -> Result<(), ErrorCode> {