mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-02-09 06:50:49 +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_2d3dmode = 0;
|
||||||
int32_t m32_2d3dsize = 4;
|
int32_t m32_2d3dsize = 4;
|
||||||
vec2_t m32_2d3d ={ 4, 4 };
|
vec2_t m32_2d3d ={ 0xffff, 4 };
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
|
|
|
@ -2363,7 +2363,6 @@ static void m32_showmouse(void)
|
||||||
col = whitecol - mousecol;
|
col = whitecol - mousecol;
|
||||||
else col = whitecol + mousecol;
|
else col = whitecol + mousecol;
|
||||||
|
|
||||||
OSD_Printf("%d\n", col);
|
|
||||||
#ifdef USE_OPENGL
|
#ifdef USE_OPENGL
|
||||||
if (getrendermode() >= REND_POLYMOST)
|
if (getrendermode() >= REND_POLYMOST)
|
||||||
{
|
{
|
||||||
|
@ -7850,9 +7849,9 @@ static void InitCustomColors(void)
|
||||||
vgapal16[32*4+2] = 21;
|
vgapal16[32*4+2] = 21;
|
||||||
|
|
||||||
// grid color
|
// grid color
|
||||||
vgapal16[25*4+0] = 17;
|
vgapal16[25*4+0] = 16;
|
||||||
vgapal16[25*4+1] = 15;
|
vgapal16[25*4+1] = 14;
|
||||||
vgapal16[25*4+2] = 15;
|
vgapal16[25*4+2] = 14;
|
||||||
|
|
||||||
vgapal16[26*4+0] = 24;
|
vgapal16[26*4+0] = 24;
|
||||||
vgapal16[26*4+1] = 24;
|
vgapal16[26*4+1] = 24;
|
||||||
|
|
Loading…
Reference in a new issue