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:
Crayon2000 2017-03-03 22:14:09 -05:00
parent 4007b45af1
commit 1a3d233ba0
2 changed files with 2 additions and 2 deletions

View file

@ -101,7 +101,7 @@ void GRRLIB_PrintfTTF(int x, int y, GRRLIB_ttfFont *myFont, const char *string,
size_t length = strlen(string) + 1;
wchar_t *utf32 = (wchar_t*)malloc(length * sizeof(wchar_t));
if (utf32) {
if (utf32 != NULL) {
length = mbstowcs(utf32, string, length);
if (length > 0) {
utf32[length] = L'\0';

View file

@ -37,7 +37,7 @@ core.
This document is written to be viewed with equal clarity in either a web browser
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
the installation of the 'libjpeg' and 'libpngu' libraries. 'libpngu', in turn,
requires 'libpng' and 'libpng' requires 'libz'. GRRLIB has FileIO functions