diff options
author | Legolas <Legolas@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2011-02-05 14:20:49 +0000 |
---|---|---|
committer | Legolas <Legolas@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2011-02-05 14:20:49 +0000 |
commit | d3faa8bb199bc3e11a471661686593fba68af075 (patch) | |
tree | 3050d3372b7a6ec6b3b0acc7c6db7a70d65e79db /packages/libndsfpc/examples/graphics/3D/Textured_Quad | |
parent | ad9881e41f56b391773a69a4c3863e0554b2fe7f (diff) | |
download | fpc-d3faa8bb199bc3e11a471661686593fba68af075.tar.gz |
* Updated libndsfpc to 1.4.10:
+ Added support for Tetris paddle, Guitar Hero grip and easy piano controller
+ Added sdmmc support for reading DSi internal SD card
+ i2c communication functions for DSi
+ Added some time handling related examples
* Improved timing functions
* Some small bug fixes and improvements, both in library and examples
- Removed unused SVN macros from header and license infos to save space :)
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@16879 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/libndsfpc/examples/graphics/3D/Textured_Quad')
-rw-r--r-- | packages/libndsfpc/examples/graphics/3D/Textured_Quad/TexturedQuad.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/libndsfpc/examples/graphics/3D/Textured_Quad/TexturedQuad.pp b/packages/libndsfpc/examples/graphics/3D/Textured_Quad/TexturedQuad.pp index da51d3cd59..8b9d632ee8 100644 --- a/packages/libndsfpc/examples/graphics/3D/Textured_Quad/TexturedQuad.pp +++ b/packages/libndsfpc/examples/graphics/3D/Textured_Quad/TexturedQuad.pp @@ -58,7 +58,7 @@ begin glPushMatrix(); //move it away from the camera - glTranslate3f32(0, 0, floattof32(-1)); + glTranslatef32(0, 0, floattof32(-1)); glRotateX(rotateX); glRotateY(rotateY); |