File diff r10959:4b345c618e31 → r10960:e97ebf9cf99b
src/video/null_v.cpp
Show inline comments
 
/* $Id$ */
 

	
 
/** @file null_v.cpp The videio driver that doesn't blit. */
 

	
 
#include "../stdafx.h"
 
#include "../openttd.h"
 
#include "../gfx_func.h"
 
#include "../variables.h"
 
#include "../debug.h"
 
#include "../blitter/factory.hpp"
 
#include "null_v.h"
 

	
 
static FVideoDriver_Null iFVideoDriver_Null;
 

	
 
const char *VideoDriver_Null::Start(const char * const *parm)
 
{
 
	this->ticks = GetDriverParamInt(parm, "ticks", 1000);
 
	_screen.width  = _screen.pitch = _cur_resolution.width;
 
	_screen.height = _cur_resolution.height;
 
	ScreenSizeChanged();