Recent content by fuyukaidesu

  1. F

    "Mario Party 4" decompilation project reaches completion

    It's gonna take years for aurora to be complete enough to allow running decompiled gamecube games to run on PC. Maybe parts of dolphin could be repurposed for the more complex parts (graphics and audio) but IIRC, they are pretty tightly coupled with the gamecube/wii architectures, like the...
  2. F

    Trump Meets with Zelenskyy, Wears Navy Suit to Funeral

    YES!!! OH MY GOD, YOU ARE SO RIGHT!!!! 🤬🤬🤬 i am ABSOLUTLY Losing my mind right now!! the AUDACITY of people defending the FUCKING PRESIDENT??!? LOOK INTO MY EYES, are you kidding me????! LISTEN UP, PEOPLE!!!! While our "president" is busy DEPLOYING THE MILITARY, SIGNING EXECUTIVE ORDERS, and...
  3. F

    libogc revealed to have used code stolen from Nintendo

    First: Who cares? Second: " code stolen from [...] decompiled Nintendo game code. When has this ever been a problem, legally? I only hear praise from game decompilation projects? Third: "code stolen from Nintendo's SDK" It doesn't chronologically makes sense, the only piece of Wii/GC nintendo...
  4. F

    Hacking Speculations about Switch 2 hacking

    I don't think it will be hacked within the first 5 years if ever at all. I don't know why people here are expecting emulators or modchip to come before any form of soft hacking either. This isn't gen6 and older consoles anymore, where you chipped the console just to get around badly made...
  5. F

    Soulslike deck builder 'Death Howl' announced

    procedurally generated soulslike roguelite deckbuilding turn-based platformer with lo-fi art, emotional resonance mechanics and emergent storytelling that's a poignant allegory for the cyclical nature of depression but it's actually cosmic horror metanarrative with fourth-wall breaking...
  6. F

    Homebrew Breath of the Wild demake demo found on an AliExpress DS flashcard

    The internal files use nintendo proprietary format (nsbmd, nsbca...), is this a modded nintendo game that was gutted down to its engine/support libs or an actual homebrew where they somehow bothered supporting nintendo ware file formats? I don't know much about NDS homebrew development but I...
  7. F

    Community Contest Let's Guess: Switch 2 launch price and offering

    $350 April 4th Launch titles: a new mainline 3D mario, a couple Gamecube VC titles with each title in the $20-$30 range No OLED, same form factor, no IR on the joycons. GPU will be a modified Xavier.
  8. F

    Denuvo unveils new technology "TraceMark" aimed to watermark and easily trace leaked games

    My guess is that they will steganographically encode a unique identifier in the pattern of the multiple checks in the games code (like how far away they're spaced in the binary, or what part of the system do they check for), and maybe even replace random instructions with equivalent others...
  9. F

    Hacking What's the difference between a game and a homebrew?

    Hello. I'm experimenting modding a game, and came across some weird behavior. I wrote this very simple homebrew. It uses the special fat device exposed by d2x's cIOS to create a file. ... int fatfd = IOS_Open("fat", 3); int p = 0; ioctlv args[] = { {&p, sizeof(p)}...
  10. F

    Anyone know C ? Quick question...

    This is incorrect. char var[] = "anything"; The compiler will insert instructions to reserve enough space (9 bytes) on the stack to hold the whole array and copy values from a possibly read only memory location, but in the end **every addressable element from "var" is guaranteed to be...
  11. F

    Nintendo talks about Breath of The Wild WiiU and Switch version differences

    Not a single Zelda game ever ran above 30 fps. Stop complaining.
  12. F

    Hacking (Pastebin leak)Possible new CFW leak? ARM3D and 3DSmack!

    >I was going to [...] then I saw this >posted 50 minutes ago, at 9:36PM CDT >pastebin is dated 9:17PM CDT Hmm. It's physically impossible you've seen this in the public paste listing that's completely different every 10 seconds, or that you took 15 minutes to create this thread. Or that you're...
  13. F

    Hacking OTP access via IOSU kernel

    Trump made the scene great again!
  14. F

    Poetic fan-made Zelda anime movie trailer makes us wish it were real

    That's as much an animation as a visual novel is a video game.
  15. F

    Hacking Add menu to yifanlu 3ds injector?

    I'd like to know, too. Currently, I'm doing something like this: void *allocateMem(u64 size) { void *ret; u32 code; svcControlMemory(&ret, 0x0, 0x0, size, MEMOP_ALLOC_LINEAR, MEMPERM_READ | MEMPERM_WRITE); return ret; } void freeMem(void *block, u64 size) { u32 dummy...