libnds icon indicating copy to clipboard operation
libnds copied to clipboard

C library for Nintendo DS

Results 16 libnds issues
Sort by recently updated
recently updated
newest added

```cpp #include int main() { std::stacktrace::current(); while (true) {} } ``` ```bash arm-none-eabi-g++ -std=c++23 -lstdc++exp ... arm-none-eabi-g++ --version # (devkitARM release 66) 15.1.0 ``` As I build with catnip, it's...

## Bug Report ### What's the issue you encountered? The libnds documentation of swiDecompressLZSSVram states that it returns: "The length of the decompressed data, or a signed errorcode from the...

- Closes #68 - Caught this bug when I noticed the *same* memory-spilling-onto-the-display crash when letting either libcurl or libssh2 write large buffers with unrecognized escape sequences to the console.

- Closes #69 ## Feature additions - Creates a new `devoptab_t` for every new console created after the first, named `conN`, where `N` is a monotonically increasing integer starting at...

## Feature Request ### What feature are you suggesting? #### Overview: - Add the ability to map file descriptors to `PrintConsole` objects, so that an application can print to several...

https://github.com/devkitPro/libnds/blob/6194b32d8f94e2ebc8078e64bf213ffc13ba1985/source/arm9/console.c#L221-L223 I got a crash/exception on line 223 when calling `std::ostream::write(char *, size_t)` with buffers of unknown size (coming from libcurl during an HTTP request). By instead iterating the buffer...