From 0d4b4d9a65fe695810cf3df4052124ea4ec190d3 Mon Sep 17 00:00:00 2001 From: Crayon2000 Date: Sun, 22 Nov 2015 02:37:19 -0500 Subject: [PATCH] Updated Readme file. --- GRRLIB/GRRLIB/grrlib/GRRLIB_fbSimple.h | 2 +- README.md | 23 +++++++++++------------ examples/3D_Light4/Makefile | 2 +- 3 files changed, 13 insertions(+), 14 deletions(-) diff --git a/GRRLIB/GRRLIB/grrlib/GRRLIB_fbSimple.h b/GRRLIB/GRRLIB/grrlib/GRRLIB_fbSimple.h index fa82320..4c0aae2 100644 --- a/GRRLIB/GRRLIB/grrlib/GRRLIB_fbSimple.h +++ b/GRRLIB/GRRLIB/grrlib/GRRLIB_fbSimple.h @@ -85,7 +85,7 @@ void GRRLIB_Rectangle (const f32 x, const f32 y, f32 x2 = x + width; f32 y2 = y + height; - if (filled) { + if (filled == true) { GX_Begin(GX_QUADS, GX_VTXFMT0, 4); GX_Position3f32(x, y, 0.0f); GX_Color1u32(color); diff --git a/README.md b/README.md index 48d2a1c..2175b40 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,8 @@ -[![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) - -GRRLIB +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 ----------------- @@ -48,12 +47,12 @@ to allow real-time loading and saving of graphical data, and thus requires ``` libgrrlib <- 2D/3D graphics library -+-- libfat <- File I/O -+-- libjpeg <- JPEG image processor -+-- libpngu <- Wii wrapper for libpng - +-- libpng <- PNG image processor - +-- libz <- Zip (lossless) compression (for PNG compression) -+-- libfreetype <- TrueType font processor +├── libfat <- File I/O +├── libjpeg <- JPEG image processor +├── libpngu <- Wii wrapper for libpng +│ └── libpng <- PNG image processor +│ └── libz <- Zip (lossless) compression (for PNG compression) +└── libfreetype <- TrueType font processor ``` @@ -273,7 +272,7 @@ Credits 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. But in the spirit of "free as in FREE" we have left you with the +option+ to release your 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: C:\grr\grrlib_logo.png and here: -http://grrlib.santo.fr/wiki/images/logo.png +https://raw.githubusercontent.com/GRRLIB/GRRLIB/master/grrlib_logo.png diff --git a/examples/3D_Light4/Makefile b/examples/3D_Light4/Makefile index 63f2a98..ad62b7b 100644 --- a/examples/3D_Light4/Makefile +++ b/examples/3D_Light4/Makefile @@ -18,7 +18,7 @@ include $(DEVKITPPC)/wii_rules TARGET := $(notdir $(CURDIR)) BUILD := build SOURCES := source -DATA := data +DATA := data INCLUDES := #---------------------------------------------------------------------------------