mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-22 12:11:34 +00:00
bleh!
This commit is contained in:
parent
8236ef7594
commit
64c8e8000d
2 changed files with 6 additions and 1 deletions
|
@ -22,7 +22,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
#define WARP_WIDTH 320
|
||||
#define WARP_HEIGHT 200
|
||||
|
||||
#define MAX_LBM_HEIGHT 200
|
||||
#ifndef MAX_LBM_HEIGHT // FIXME: get rid of this ifndef --KB
|
||||
#define MAX_LBM_HEIGHT 480
|
||||
#endif
|
||||
|
||||
typedef struct
|
||||
{
|
||||
|
|
|
@ -84,7 +84,10 @@ extern PROC glVertexPointerEXT;
|
|||
#define ALIAS_BASE_SIZE_RATIO (1.0 / 11.0)
|
||||
// normalizing factor so player model works out to about
|
||||
// 1 pixel per triangle
|
||||
|
||||
#ifndef MAX_LBM_HEIGHT // FIXME: Make this ifndef go away.. --KB
|
||||
#define MAX_LBM_HEIGHT 480
|
||||
#endif
|
||||
|
||||
#define TILE_SIZE 128 // size of textures generated by R_GenTiledSurf
|
||||
|
||||
|
|
Loading…
Reference in a new issue