mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 17:01:51 +00:00
Mapster32: change default 2d3d position to upper right corner, remove debug printf I accidentally committed.
git-svn-id: https://svn.eduke32.com/eduke32@5303 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
480dc0ecaf
commit
79ac071f5b
2 changed files with 4 additions and 5 deletions
|
@ -186,7 +186,7 @@ static uint8_t visited[MAXWALLS>>3];
|
|||
|
||||
int32_t m32_2d3dmode = 0;
|
||||
int32_t m32_2d3dsize = 4;
|
||||
vec2_t m32_2d3d ={ 4, 4 };
|
||||
vec2_t m32_2d3d ={ 0xffff, 4 };
|
||||
|
||||
typedef struct
|
||||
{
|
||||
|
|
|
@ -2363,7 +2363,6 @@ static void m32_showmouse(void)
|
|||
col = whitecol - mousecol;
|
||||
else col = whitecol + mousecol;
|
||||
|
||||
OSD_Printf("%d\n", col);
|
||||
#ifdef USE_OPENGL
|
||||
if (getrendermode() >= REND_POLYMOST)
|
||||
{
|
||||
|
@ -7850,9 +7849,9 @@ static void InitCustomColors(void)
|
|||
vgapal16[32*4+2] = 21;
|
||||
|
||||
// grid color
|
||||
vgapal16[25*4+0] = 17;
|
||||
vgapal16[25*4+1] = 15;
|
||||
vgapal16[25*4+2] = 15;
|
||||
vgapal16[25*4+0] = 16;
|
||||
vgapal16[25*4+1] = 14;
|
||||
vgapal16[25*4+2] = 14;
|
||||
|
||||
vgapal16[26*4+0] = 24;
|
||||
vgapal16[26*4+1] = 24;
|
||||
|
|
Loading…
Reference in a new issue