little bit revert

This commit is contained in:
Denis Pauk 2020-02-23 12:23:09 +02:00 committed by Yamagi
parent d3d433bd7f
commit c4a1147718
5 changed files with 13 additions and 11 deletions

View file

@ -1519,7 +1519,7 @@ SCR_UpdateScreen(void)
numframes = 2;
separation[0] = -gl1_stereo_separation->value / 2;
separation[1] = +gl1_stereo_separation->value / 2;
}
}
else
{
separation[0] = 0;
@ -1571,6 +1571,7 @@ SCR_UpdateScreen(void)
R_SetPalette(NULL);
cl.cinematicpalette_active = false;
}
R_EndWorldRenderpass();
SCR_DrawConsole();
}

View file

@ -31,7 +31,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include <string.h>
#include <stdarg.h>
#define REF_VERSION "Yamagi Quake II Software Refresher"
#define REF_VERSION "SOFT 0.01"
// up / down
#define PITCH 0

View file

@ -437,9 +437,6 @@ R_Init
static qboolean
RE_Init(void)
{
R_Printf(PRINT_ALL, "Refresh: " REF_VERSION "\n");
R_Printf(PRINT_ALL, "Client: " YQ2VERSION "\n\n");
R_RegisterVariables ();
R_InitImages ();
Mod_Init ();
@ -472,6 +469,8 @@ RE_Init(void)
// create the window
ri.Vid_MenuInit();
R_Printf(PRINT_ALL, "ref_soft version: "REF_VERSION"\n");
return true;
}

View file

@ -35,18 +35,18 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
// verify if VkResult is VK_SUCCESS
#define VK_VERIFY(x) { \
VkResult res = (x); \
if(res != VK_SUCCESS) { \
R_Printf(PRINT_ALL, "%s:%d: VkResult verification failed: %s\n", \
__func__, __LINE__, QVk_GetError(res)); \
} \
VkResult res = (x); \
if(res != VK_SUCCESS) { \
R_Printf(PRINT_ALL, "%s:%d: VkResult verification failed: %s\n", \
__func__, __LINE__, QVk_GetError(res)); \
} \
}
// up / down
#define PITCH 0
// left / right
#define YAW 1
#define YAW 1
// fall over
#define ROLL 2

View file

@ -1361,8 +1361,10 @@ RE_EndWorldRenderpass( void )
{
if (R_EndWorldRenderReady())
{
/*
R_Printf(PRINT_ALL, "%s(): Buffers are not initilized.\n",
__func__);
*/
}
}