small change

This commit is contained in:
aap 2015-06-17 21:51:33 +02:00
parent c0d9ecdf3f
commit df419c63ef
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,7 @@
#include <cstdlib>
#include <cstring>
#include <cassert>
#include <stdint.h>
#include <new>
#include "rw.h"
@ -59,10 +60,12 @@ main(int argc, char *argv[])
rw::Image::setSearchPath("./;/home/aap/gamedata/ps2/gtavc/MODELS/gta3_archive/txd_extracted/");
/*
// rw::Image *tga = rw::readTGA("b.tga");
rw::Image *tga = rw::readTGA("player.tga");
assert(tga != NULL);
rw::writeTGA(tga, "out.tga");
*/
// for(rw::int32 i = 0; i < c->numAtomics; i++)
// rw::Gl::Instance(c->atomicList[i]);

View File

@ -15,7 +15,6 @@ typedef float float32;
typedef int32 bool32;
typedef uint8 byte;
typedef uint32 uint;
typedef uint64 uintptr;
class Stream
{