mirror of
https://github.com/knightfox75/nds_nflib.git
synced 2025-06-18 00:35:33 -04:00
docs: library: Update changelog and version number to 1.1.9
This commit is contained in:
parent
2089aab7f9
commit
f834dd6bcb
@ -1,11 +1,12 @@
|
||||
NightFox's Lib Ver. DEV
|
||||
-----------------------
|
||||
NightFox's Lib Ver. 1.1.9
|
||||
-------------------------
|
||||
|
||||
- The devkitARM makefiles have been removed as they only work with old versions
|
||||
of devkitARM, which aren't supported by its maintainers. The code and examples
|
||||
of NFLib will probably need changes to work with current devkitARM.
|
||||
- In all scripts to convert assets, check if the environment variable
|
||||
``BLOCKSDS`` is set, which overrides the default path.
|
||||
- Build library with debug symbols to help debug applications that use it.
|
||||
|
||||
NightFox's Lib Ver. 1.1.8
|
||||
-------------------------
|
||||
|
@ -33,13 +33,13 @@ extern "C" {
|
||||
/// Minor version of NightFox's Lib
|
||||
#define NF_LIB_MINOR (1)
|
||||
/// Patch version of NightFox's Lib
|
||||
#define NF_LIB_PATCH (8)
|
||||
#define NF_LIB_PATCH (9)
|
||||
|
||||
/// Full version of NightFox's Lib
|
||||
#define NF_LIB_VERSION ((NF_LIB_MAJOR << 16) | (NF_LIB_MINOR << 8) | (NF_LIB_PATCH))
|
||||
|
||||
/// String with the version of NightFox's Lib
|
||||
#define NF_LIB_VERSION_STRING "1.1.8"
|
||||
#define NF_LIB_VERSION_STRING "1.1.9"
|
||||
|
||||
#endif // NF_LIB_H__
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user