Add missing item to CHANGELOG

This commit is contained in:
Crayon2000 2019-04-29 08:17:07 -04:00
parent d758a9fdbe
commit 78cf06a5a9
3 changed files with 9 additions and 4 deletions

View file

@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file.
- Removed libpng, zlib, libfreetype and libjpeg from project. These libraries should now be installed with pacman. - Removed libpng, zlib, libfreetype and libjpeg from project. These libraries should now be installed with pacman.
- GRRLIB and pngu are now installed into the porlibs folder. - GRRLIB and pngu are now installed into the porlibs folder.
- Removed uint declaration. u32 should be used instead. - Removed uint declaration. u32 should be used instead.
- The GRRLIB_CreateEmptyTexture function is not inline anymore
## [4.3.2] - 2012-08-12 ## [4.3.2] - 2012-08-12
- libpng was updated to version 1.5.12 - libpng was updated to version 1.5.12

View file

@ -27,7 +27,7 @@ THE SOFTWARE.
/** /**
* Load a ByteMap font structure from a buffer. * Load a ByteMap font structure from a buffer.
* File format version 1.1 is used, more information could be found at http://bmf.wz.cz/bmf-format.htm * File format version 1.1 is used, more information could be found at https://bmf.php5.cz/?page=format
* @param my_bmf The ByteMap font buffer to load. * @param my_bmf The ByteMap font buffer to load.
* @return A GRRLIB_bytemapFont structure filled with BMF information. * @return A GRRLIB_bytemapFont structure filled with BMF information.
* @see GRRLIB_FreeBMF * @see GRRLIB_FreeBMF

View file

@ -1,5 +1,5 @@
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
Copyright (c) 2009-2017 The GRRLIB Team Copyright (c) 2009-2019 The GRRLIB Team
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal
@ -62,6 +62,10 @@ void GRRLIB_CompoStart (void) {
void GRRLIB_CompoEnd(int posx, int posy, GRRLIB_texImg *tex) { void GRRLIB_CompoEnd(int posx, int posy, GRRLIB_texImg *tex) {
GRRLIB_Screen2Texture(posx, posy, tex, GX_TRUE); GRRLIB_Screen2Texture(posx, posy, tex, GX_TRUE);
if (rmode->aa) GX_SetPixelFmt(GX_PF_RGB565_Z16, GX_ZC_LINEAR); if (rmode->aa) {
else GX_SetPixelFmt(GX_PF_RGB8_Z24 , GX_ZC_LINEAR); GX_SetPixelFmt(GX_PF_RGB565_Z16, GX_ZC_LINEAR);
}
else {
GX_SetPixelFmt(GX_PF_RGB8_Z24 , GX_ZC_LINEAR);
}
} }