summaryrefslogtreecommitdiffstats
path: root/src/graphics/common/device.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphics/common/device.cpp')
-rw-r--r--src/graphics/common/device.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/graphics/common/device.cpp b/src/graphics/common/device.cpp
new file mode 100644
index 0000000..2e3db61
--- /dev/null
+++ b/src/graphics/common/device.cpp
@@ -0,0 +1,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;
+} \ No newline at end of file