diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-07-24 23:46:29 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-07-24 23:46:29 +0000 |
| commit | 52c987bfd7abcd8acecdc7da580b8e56be0bd625 (patch) | |
| tree | e609740a22807f569f483a1785af72aaaf6bdc33 /src/game/client/mapres_tilemap.cpp | |
| parent | 1acc309c30f758c3553c388b22fb18f9d1c0d967 (diff) | |
| download | zcatch-52c987bfd7abcd8acecdc7da580b8e56be0bd625.tar.gz zcatch-52c987bfd7abcd8acecdc7da580b8e56be0bd625.zip | |
fixed so that the .dat-files are compiled into the exes
Diffstat (limited to 'src/game/client/mapres_tilemap.cpp')
| -rw-r--r-- | src/game/client/mapres_tilemap.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/game/client/mapres_tilemap.cpp b/src/game/client/mapres_tilemap.cpp index 197a1a8b..357e8870 100644 --- a/src/game/client/mapres_tilemap.cpp +++ b/src/game/client/mapres_tilemap.cpp @@ -49,7 +49,6 @@ void tilemap_render(float scale, int fg) float frac = (1.0f/1024.0f);//2.0f; //2.0f; float texsize = 1024.0f; float nudge = 0.5f/texsize; - float s = 1.0f; for(int y = 0; y < tmap->height; y++) for(int x = 0; x < tmap->width; x++) @@ -80,7 +79,6 @@ void tilemap_render(float scale, int fg) int py0 = ty*(1024/16); int px1 = (tx+1)*(1024/16)-1; int py1 = (ty+1)*(1024/16)-1; - float z = -5.0f; gfx_quads_setsubset( nudge + px0/texsize+frac, |