summaryrefslogtreecommitdiffstats
path: root/src/graphics/common/device.cpp
blob: 2e3db61b7fc89a6de97687fea46ee7e98ce0516f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "graphics/common/device.h"

//! Sets the default values
Gfx::DeviceConfig::DeviceConfig()
{
	width = 800;
	height = 600;
	bpp = 16;
	fullScreen = false;
	resizeable = false;
	hardwareAccel = true;
	doubleBuf = true;
	noFrame = false;
}