From d4e08aa2cc9fbeb7c2d76336c517ba87adc3be30 Mon Sep 17 00:00:00 2001 From: fincs Date: Sun, 22 May 2022 16:35:03 +0200 Subject: [PATCH] libctru v2.1.1 --- Changelog.md | 7 +++++++ libctru/Makefile | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 8c5c98aae..d1fd25d17 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,12 @@ # Changelog +## Version 2.1.1 + +- FPSCR is now initialized with a predictable value in all threads (including the main thread). +- Added gspGetSessionHandle and gspLcdGetSessionHandle. +- Fixed bugs related to uninitialized data in srv/errf service wrappers. +- Further improvements to overall system stability and other minor adjustments have been made to enhance the user experience. + ## Version 2.1.0 **The #define for the 3DS platform has been changed to `__3DS__` (previously it was `_3DS`) - please update your Makefiles and your code** diff --git a/libctru/Makefile b/libctru/Makefile index 0ac1d7ed4..be396bcc5 100644 --- a/libctru/Makefile +++ b/libctru/Makefile @@ -10,7 +10,7 @@ include $(DEVKITARM)/base_rules export LIBCTRU_MAJOR := 2 export LIBCTRU_MINOR := 1 -export LIBCTRU_PATCH := 0 +export LIBCTRU_PATCH := 1 VERSION := $(LIBCTRU_MAJOR).$(LIBCTRU_MINOR).$(LIBCTRU_PATCH)