mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-22 06:52:20 +00:00
Updated Readme file.
This commit is contained in:
parent
18a7f280e5
commit
0d4b4d9a65
3 changed files with 13 additions and 14 deletions
|
@ -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);
|
||||
|
|
23
README.md
23
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
|
||||
|
|
|
@ -18,7 +18,7 @@ include $(DEVKITPPC)/wii_rules
|
|||
TARGET := $(notdir $(CURDIR))
|
||||
BUILD := build
|
||||
SOURCES := source
|
||||
DATA := data
|
||||
DATA := data
|
||||
INCLUDES :=
|
||||
|
||||
#---------------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue