Temp update to show unexpected segfault error

This commit is contained in:
2017-06-16 03:16:30 -05:00
parent 1e71ebed47
commit e59dd980bd
3 changed files with 19 additions and 7 deletions

View File

@@ -23,19 +23,18 @@ public:
// attributes
private:
QFile file;
QString listOfDirs;
QVector3D m_bgColorOn = { 5, 5, 5 };
QVector3D m_bgColorOff = { 128, 204, 255 };
QVector3D m_lightColor = { 255,255,255 };
bool m_bfCulling = false;
bool m_light = false;
QString listOfDirs;
int m_lightType = 1; // 1 = direct, 2 = point
QVector3D m_lightColor = { 255,255,255 };
float m_attenuation = 0.0f;
float m_ambient = 0.005f;
bool m_headlight = false;
bool m_autoColor = true;
float m_attenuation = 0.0f;
float m_ambient = 0.005f;
int m_lightType = 1; // 1 = direct, 2 = point
// functions
private:

View File

@@ -17,6 +17,7 @@ private:
Ui::SettingsWindow* ui;
void setupConnections();
void updateDirList();
private:
QString dirList;