summaryrefslogtreecommitdiffstats
path: root/src/graphics/common/device.cpp
blob: 53274b383374bd47fcc7d026406dee5b08919dda (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;
}