mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-22 15:02:20 +00:00
Stop mentioning GRRLIB v4.1.0 in Introduction
There is no need to talk about a 2009 release in the README file introduction.
This commit is contained in:
parent
4007b45af1
commit
1a3d233ba0
2 changed files with 2 additions and 2 deletions
|
@ -101,7 +101,7 @@ void GRRLIB_PrintfTTF(int x, int y, GRRLIB_ttfFont *myFont, const char *string,
|
||||||
|
|
||||||
size_t length = strlen(string) + 1;
|
size_t length = strlen(string) + 1;
|
||||||
wchar_t *utf32 = (wchar_t*)malloc(length * sizeof(wchar_t));
|
wchar_t *utf32 = (wchar_t*)malloc(length * sizeof(wchar_t));
|
||||||
if (utf32) {
|
if (utf32 != NULL) {
|
||||||
length = mbstowcs(utf32, string, length);
|
length = mbstowcs(utf32, string, length);
|
||||||
if (length > 0) {
|
if (length > 0) {
|
||||||
utf32[length] = L'\0';
|
utf32[length] = L'\0';
|
||||||
|
|
|
@ -37,7 +37,7 @@ core.
|
||||||
This document is written to be viewed with equal clarity in either a web browser
|
This document is written to be viewed with equal clarity in either a web browser
|
||||||
or a text editor.
|
or a text editor.
|
||||||
|
|
||||||
As of v4.1.0, GRRLIB is supplied as a standard C/C++ library (aka. archive)
|
GRRLIB is supplied as a standard C/C++ library (aka. archive)
|
||||||
called 'libgrrlib'. Because GRRLIB processes JPEG and PNG images, it requires
|
called 'libgrrlib'. Because GRRLIB processes JPEG and PNG images, it requires
|
||||||
the installation of the 'libjpeg' and 'libpngu' libraries. 'libpngu', in turn,
|
the installation of the 'libjpeg' and 'libpngu' libraries. 'libpngu', in turn,
|
||||||
requires 'libpng' and 'libpng' requires 'libz'. GRRLIB has FileIO functions
|
requires 'libpng' and 'libpng' requires 'libz'. GRRLIB has FileIO functions
|
||||||
|
|
Loading…
Reference in a new issue