logging
Some checks failed
Build and Test / sonic-transformed (push) Successful in 4m34s
Build and Test / puyopuyo (push) Failing after 4m41s
Build and Test / wii-sports-club (push) Successful in 4m41s
Build and Test / mario-tennis (push) Successful in 4m51s
Build and Test / fast-racing-neo (push) Successful in 4m50s
Build and Test / friends (push) Successful in 4m57s
Build and Test / splatoon (push) Successful in 5m3s
Build and Test / minecraft-wiiu (push) Successful in 5m4s
Build and Test / splatoon-testfire (push) Successful in 5m4s
Build and Test / wii-u-chat (push) Successful in 5m4s
Build and Test / super-mario-maker (push) Successful in 5m32s

This commit is contained in:
red binder 2026-06-23 15:32:18 +02:00
commit a28308ef0b
2 changed files with 6 additions and 2 deletions

View file

@ -236,6 +236,8 @@ impl Friends3DS for FriendsUser {
}
async fn sync_friend(&self, unk1: u64, unk2: Vec<u32>, unk3: Vec<u64>) -> Result<Vec<FriendRelationship>, ErrorCode> {
log::info!("params: {:?}, {:?}, {:?}", unk1, unk2, unk3);
let dummy = FriendRelationship {
data: Data {},
pid: 69,
@ -250,7 +252,9 @@ impl Friends3DS for FriendsUser {
Ok(())
}
async fn update_favorite_game_key(&self, game_key: crate::rmc::protocols::friends_3ds::GameKey) -> Result<(), ErrorCode> {
async fn update_favorite_game_key(&self, game_key: rnex_core::rmc::protocols::friends_3ds::GameKey) -> Result<(), ErrorCode> {
log::info!("favorite game key: {:?}", game_key);
Ok(())
}

View file

@ -41,7 +41,7 @@ pub struct MiiList {
pub mii_data: Vec<Vec<u8>>,
}
#[derive(RmcSerialize)]
#[derive(RmcSerialize, Debug)]
#[rmc_struct(0)]
pub struct GameKey {
#[extends]