Mercurial > fife-parpg
comparison engine/core/controller/enginesettings.cpp @ 444:79678719d569
* Fixed the sld typo. fixes[ticket:463]
author | helios2000@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Wed, 24 Mar 2010 13:29:16 +0000 |
parents | ad7969d9460b |
children | 356634098bd9 |
comparison
equal
deleted
inserted
replaced
443:ff36b24354c7 | 444:79678719d569 |
---|---|
40 EngineSettings::EngineSettings(): | 40 EngineSettings::EngineSettings(): |
41 m_bitsperpixel(0), | 41 m_bitsperpixel(0), |
42 m_fullscreen(false), | 42 m_fullscreen(false), |
43 m_initialvolume(MAXIMUM_VOLUME / 2), | 43 m_initialvolume(MAXIMUM_VOLUME / 2), |
44 m_renderbackend("SDL"), | 44 m_renderbackend("SDL"), |
45 m_sldremovefakealpha(false), | 45 m_sdlremovefakealpha(false), |
46 m_screenwidth(800), | 46 m_screenwidth(800), |
47 m_screenheight(600), | 47 m_screenheight(600), |
48 m_windowtitle("FIFE"), | 48 m_windowtitle("FIFE"), |
49 m_windowicon(""), | 49 m_windowicon(""), |
50 m_defaultfontpath(""), | 50 m_defaultfontpath(""), |
130 tmp.push_back("SDL"); | 130 tmp.push_back("SDL"); |
131 tmp.push_back("OpenGL"); | 131 tmp.push_back("OpenGL"); |
132 return tmp; | 132 return tmp; |
133 } | 133 } |
134 | 134 |
135 void EngineSettings::setSDLRemoveFakeAlpha(bool sldremovefakealpha) { | 135 void EngineSettings::setSDLRemoveFakeAlpha(bool sdlremovefakealpha) { |
136 m_sldremovefakealpha = sldremovefakealpha; | 136 m_sdlremovefakealpha = sdlremovefakealpha; |
137 } | 137 } |
138 | 138 |
139 void EngineSettings::setScreenWidth(unsigned int screenwidth) { | 139 void EngineSettings::setScreenWidth(unsigned int screenwidth) { |
140 m_screenwidth = screenwidth; | 140 m_screenwidth = screenwidth; |
141 } | 141 } |