libctru v2.1.1

This commit is contained in:
fincs 2022-05-22 16:35:03 +02:00
parent b76a245b79
commit d4e08aa2cc
No known key found for this signature in database
GPG Key ID: 62C7609ADA219C60
2 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,12 @@
# Changelog # 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 ## 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** **The #define for the 3DS platform has been changed to `__3DS__` (previously it was `_3DS`) - please update your Makefiles and your code**

View File

@ -10,7 +10,7 @@ include $(DEVKITARM)/base_rules
export LIBCTRU_MAJOR := 2 export LIBCTRU_MAJOR := 2
export LIBCTRU_MINOR := 1 export LIBCTRU_MINOR := 1
export LIBCTRU_PATCH := 0 export LIBCTRU_PATCH := 1
VERSION := $(LIBCTRU_MAJOR).$(LIBCTRU_MINOR).$(LIBCTRU_PATCH) VERSION := $(LIBCTRU_MAJOR).$(LIBCTRU_MINOR).$(LIBCTRU_PATCH)