Recent content by Yukkuri_XP

  1. Yukkuri_XP

    ROM Hack [Release] Every File Explorer

    ︎ 1667125986 The OK button goes off screen and is not displayed. but, with sizer free software, the OK button appears.
  2. Yukkuri_XP

    Homebrew app Using Sleep function in devkitpro 3DS

    I am not sure how to do the wait process in devkitpro 3DS. Is it possible to wait like the Sleep function? (the one that specifies milliseconds in the Sleep function) I tried to look it up myself, but I couldn't figure it out, so I would appreciate it if you could post an example code.
  3. Yukkuri_XP

    Homebrew app Want to use shapes on my 3DS with devkitpro.

    Sorry, but is it possible to draw shapes only with gfxGetFramebuffer and memcpy? I used to be able to use this module, but after updating devkitpro, it is no longer available. void SelectFrame(u8* pFrame) { if (pFrame) { pDispBuffer = pFrame; } } void SetClipping(int x1, int y1...
  4. Yukkuri_XP

    Homebrew app Want to use shapes on my 3DS with devkitpro.

    Hi. I am making a program to draw shapes in devkitpro 3DS, but I am unable to build it due to an error. I would appreciate it if you could tell me where I can correct the problem. #include <3ds.h> #include <stdio.h> #include <string.h> u8* pDispBuffer; unsigned char PenColor[3]; unsigned char...