libctru icon indicating copy to clipboard operation
libctru copied to clipboard

Homebrew development library for Nintendo 3DS/Horizon OS user mode (Arm11)

Results 28 libctru issues
Sort by recently updated
recently updated
newest added

A working example is available [here](https://github.com/Pixel-Pop/3ds-examples/tree/master/network/dlpclnt). Feedback is appreciated.

Born from: https://github.com/Meziu/ctru-rs/issues/60 ## Description After some testing on our Rust libraries for this system, we've noticed a weird bug with the use of thread-local storage. With some investigation, we...

The current [news init code](https://github.com/devkitPro/libctru/blob/ebb53051886cfe966f1aa27ff3dd6689176de483/libctru/source/services/news.c#L15-L23) defaults to using "news:u" to use the news service. If both services are available, [and according to 3dbrew](https://www.3dbrew.org/wiki/News_Services), there is no way to use the...

I noticed some strange behavior while trying to make use of the new3DS's gyroscope and accelerometer. After reading both gyroscope and accelerometer data, i noticed the returned accelerometer data is...

In [socket.h](https://github.com/devkitPro/libctru/blob/master/libctru/include/sys/socket.h#L52), `sockaddr` is defined as follows: ``` struct sockaddr { sa_family_t sa_family; char sa_data[]; }; ``` However, according to [Linux man pages](https://man7.org/linux/man-pages/man2/bind.2.html), it should be defined as follows: ```...

``` #include int main() { // struct stat st; if (stat("", &st) == 0) // // } ``` Personally, I tested this by using one of the examples from 3ds-examples,...

I'm getting a random soft lock in fputs (on a real 3ds), doesn't occur in citra. There's no problems if I disable the calls to this. It's getting stuck here:...

When connecting a non-blocking socket and using poll() to wait for it to become ready for writing, calling getsockopt() on it with SOL_SOCKET, SO_ERROR itself returns 0 and returns the...

Seems first mute second is still here with microphone. This is the code i'm using that gives that problem: http://pastebin.com/58biXMur

Hello, I've gotten very frustrated at doxygen's search feature not showing me the suitable functions for my objectives right away (be it because the name of the function doesn't start...