Skip to content

Commit a087c68

Browse files
committed
ProjectLoader: Initialize properties
1 parent 9f937b7 commit a087c68

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ScratchCPPGui/projectloader.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,10 @@ class ProjectLoader : public QObject
9999
QFuture<void> m_eventLoop;
100100
double m_fps = 30;
101101
bool m_turboMode = false;
102-
unsigned int m_stageWidth;
103-
unsigned int m_stageHeight;
104-
int m_cloneLimit;
105-
bool m_spriteFencing;
102+
unsigned int m_stageWidth = 480;
103+
unsigned int m_stageHeight = 360;
104+
int m_cloneLimit = 300;
105+
bool m_spriteFencing = true;
106106
};
107107

108108
} // namespace scratchcppgui

0 commit comments

Comments
 (0)