diff options
author | pixel <pixel> | 2003-02-09 19:29:34 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-02-09 19:29:34 +0000 |
commit | 6b63855d6e31a4d63ced9c803847ee35c70ee514 (patch) | |
tree | 35bc4826caab46add73a81751a3840c6ad9a2689 /src | |
parent | 2ce366684532475971543bfdfa7abeb001354371 (diff) |
Whoups..
Diffstat (limited to 'src')
-rw-r--r-- | src/test.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test.cc b/src/test.cc index a25f7a1..0bb2fde 100644 --- a/src/test.cc +++ b/src/test.cc @@ -12,13 +12,14 @@ CODE_BEGINS virtual int startup() throw (GeneralException) { verbosity = M_INFO; mogltk::glbase::setup(); + new Archive("datas.paq"); Input * fonte = new Input("font-2.bin"); mogltk::font font(fonte); delete fonte; verbosity = M_INFO; - Input * pattern = new Input("pattern6.bmp"); + Input * pattern = new Input("pattern6.rgba"); mogltk::texture * mytex = new mogltk::texture(pattern, true); delete pattern; |