Recent content by Arseniy_Kmit

  1. Arseniy_Kmit

    Hacking My Wii may by bricked

    Yes, Jacob R.
  2. Arseniy_Kmit

    Homebrew Homebrew app Homebrew game WPAD_ButtonsHeld() not working.

    I've changed it to this: if (WPAD_ButtonsHeld(0) & WPAD_BUTTON_A) { cur_Speed += 0.1; if (cur_Speed >= 7) { cur_Speed = 7; } } else { cur_Speed -= 0.2; if (cur_Speed <= -10)...
  3. Arseniy_Kmit

    Hacking My Wii may by bricked

    I just stumbled across this thread and I've seen a youtuber which I forgot the name who reviewed 2nd hand Wiis and one was modded. It wouldn't start and when he pulled out the SD card, it booted perfectly. Have you tried that?
  4. Arseniy_Kmit

    Homebrew Homebrew app Homebrew game WPAD_ButtonsHeld() not working.

    Hello. I've tried some coding for homebrew and, as I'm a newbie, I searched a lot of tutorials which I only found one with the basics. Then, I went to something harder, GRRLIB. I've tried some "gravity" logic and... it just won't work. The background is fine, the Wiimote cursor is fine, all...