mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-25 08:12:20 +00:00
Fix README
This commit is contained in:
parent
36ee6185a8
commit
832e49adef
2 changed files with 5 additions and 5 deletions
|
@ -89,7 +89,7 @@ libpngu is supplied as source code
|
||||||
libpng is supplied via devkitPro pacman (ppc-libpng)
|
libpng is supplied via devkitPro pacman (ppc-libpng)
|
||||||
libfreetype is supplied via devkitPro pacman (ppc-freetype)
|
libfreetype is supplied via devkitPro pacman (ppc-freetype)
|
||||||
libjpeg is supplied via devkitPro pacman (ppc-libjpeg-turbo)
|
libjpeg is supplied via devkitPro pacman (ppc-libjpeg-turbo)
|
||||||
libfat is supplied via devkitPro pacman (libfat)
|
libfat is supplied via devkitPro pacman (libfat-ogc)
|
||||||
```
|
```
|
||||||
|
|
||||||
The easy way is to install GRRLIB and all the required libraries in a single
|
The easy way is to install GRRLIB and all the required libraries in a single
|
||||||
|
@ -97,7 +97,7 @@ command:
|
||||||
```bash
|
```bash
|
||||||
c:
|
c:
|
||||||
cd \grr\GRRLIB
|
cd \grr\GRRLIB
|
||||||
pacman --sync --needed --noconfirm libfat ppc-libpng ppc-freetype ppc-libjpeg-turbo
|
pacman --sync --needed --noconfirm libfat-ogc ppc-libpng ppc-freetype ppc-libjpeg-turbo
|
||||||
make clean all install
|
make clean all install
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -109,7 +109,7 @@ installed and you are ready to start developing Wii homebrew games.
|
||||||
If you want, you could install the libfat, libpng,
|
If you want, you could install the libfat, libpng,
|
||||||
libfreetype and libjpeg with there dependencies in a single command:
|
libfreetype and libjpeg with there dependencies in a single command:
|
||||||
```bash
|
```bash
|
||||||
pacman --sync --needed --noconfirm libfat ppc-libpng ppc-freetype ppc-libjpeg-turbo
|
pacman --sync --needed --noconfirm libfat-ogc ppc-libpng ppc-freetype ppc-libjpeg-turbo
|
||||||
```
|
```
|
||||||
|
|
||||||
Each library could also be installed individually:
|
Each library could also be installed individually:
|
||||||
|
|
|
@ -67,7 +67,7 @@ int main(int argc, char **argv) {
|
||||||
|
|
||||||
if(ShowFPS == true) {
|
if(ShowFPS == true) {
|
||||||
char FPS[255];
|
char FPS[255];
|
||||||
sprintf(FPS, "Current FPS: %d", CalculateFrameRate());
|
snprintf(FPS, sizeof(FPS), "Current FPS: %d", CalculateFrameRate());
|
||||||
GRRLIB_PrintfTTF(500+1, 25+1, myFont, FPS, 12, 0x000000FF);
|
GRRLIB_PrintfTTF(500+1, 25+1, myFont, FPS, 12, 0x000000FF);
|
||||||
GRRLIB_PrintfTTF(500, 25, myFont, FPS, 12, 0xFFFFFFFF);
|
GRRLIB_PrintfTTF(500, 25, myFont, FPS, 12, 0xFFFFFFFF);
|
||||||
}
|
}
|
||||||
|
@ -126,7 +126,7 @@ static bool ScreenShot() {
|
||||||
char path[255];
|
char path[255];
|
||||||
time_t now = time(NULL);
|
time_t now = time(NULL);
|
||||||
struct tm *ti = localtime(&now);
|
struct tm *ti = localtime(&now);
|
||||||
sprintf(path, "sd:/grrlib_ttf_%d%02d%02d%02d%02d%02d.png",
|
snprintf(path, sizeof(path), "sd:/grrlib_ttf_%d%02d%02d%02d%02d%02d.png",
|
||||||
ti->tm_year + 1900, ti->tm_mon + 1, ti->tm_mday, ti->tm_hour, ti->tm_min, ti->tm_sec);
|
ti->tm_year + 1900, ti->tm_mon + 1, ti->tm_mday, ti->tm_hour, ti->tm_min, ti->tm_sec);
|
||||||
return GRRLIB_ScrShot(path);
|
return GRRLIB_ScrShot(path);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue