Updated Readme file.

This commit is contained in:
Crayon2000 2015-11-22 02:37:19 -05:00
parent 18a7f280e5
commit 0d4b4d9a65
3 changed files with 13 additions and 14 deletions

View file

@ -85,7 +85,7 @@ void GRRLIB_Rectangle (const f32 x, const f32 y,
f32 x2 = x + width; f32 x2 = x + width;
f32 y2 = y + height; f32 y2 = y + height;
if (filled) { if (filled == true) {
GX_Begin(GX_QUADS, GX_VTXFMT0, 4); GX_Begin(GX_QUADS, GX_VTXFMT0, 4);
GX_Position3f32(x, y, 0.0f); GX_Position3f32(x, y, 0.0f);
GX_Color1u32(color); GX_Color1u32(color);

View file

@ -1,9 +1,8 @@
[![Build Status](https://travis-ci.org/GRRLIB/GRRLIB.svg?branch=master)](https://travis-ci.org/GRRLIB/GRRLIB) GRRLIB
[![Join the chat at https://gitter.im/GRRLIB/GRRLIB](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/GRRLIB/GRRLIB?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
GRRLIB
====== ======
[![Build Status](https://travis-ci.org/GRRLIB/GRRLIB.svg?branch=master)](https://travis-ci.org/GRRLIB/GRRLIB)
[![Join the chat at https://gitter.im/GRRLIB/GRRLIB](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/GRRLIB/GRRLIB?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Table of Contents Table of Contents
----------------- -----------------
@ -48,12 +47,12 @@ to allow real-time loading and saving of graphical data, and thus requires
``` ```
libgrrlib <- 2D/3D graphics library libgrrlib <- 2D/3D graphics library
+-- libfat <- File I/O ├── libfat <- File I/O
+-- libjpeg <- JPEG image processor ├── libjpeg <- JPEG image processor
+-- libpngu <- Wii wrapper for libpng ├── libpngu <- Wii wrapper for libpng
+-- libpng <- PNG image processor │ └── libpng <- PNG image processor
+-- libz <- Zip (lossless) compression (for PNG compression) │ └── libz <- Zip (lossless) compression (for PNG compression)
+-- libfreetype <- TrueType font processor └── libfreetype <- TrueType font processor
``` ```
@ -273,7 +272,7 @@ Credits
Licence Licence
------- -------
GRRLIB is released under [the MIT Licence](https://github.com/GRRLIB/GRRLIB/blob/master/LICENCE.TXT). GRRLIB is released under the [MIT Licence](https://github.com/GRRLIB/GRRLIB/blob/master/LICENCE.TXT).
If we had chosen the GPL licence you would be +forced+ (legally required) to release your source code. If we had chosen the GPL licence you would be +forced+ (legally required) to release your source code.
But in the spirit of "free as in FREE" we have left you with the +option+ to release your But in the spirit of "free as in FREE" we have left you with the +option+ to release your
source code. source code.
@ -283,4 +282,4 @@ the credits of your game/application. And, if you +choose+ to do that, we
encourage you to use our logo to achieve it; You can find our logo here: encourage you to use our logo to achieve it; You can find our logo here:
C:\grr\grrlib_logo.png C:\grr\grrlib_logo.png
and here: and here:
http://grrlib.santo.fr/wiki/images/logo.png https://raw.githubusercontent.com/GRRLIB/GRRLIB/master/grrlib_logo.png

View file

@ -18,7 +18,7 @@ include $(DEVKITPPC)/wii_rules
TARGET := $(notdir $(CURDIR)) TARGET := $(notdir $(CURDIR))
BUILD := build BUILD := build
SOURCES := source SOURCES := source
DATA := data DATA := data
INCLUDES := INCLUDES :=
#--------------------------------------------------------------------------------- #---------------------------------------------------------------------------------