diff options
author | chai <chaifix@163.com> | 2018-08-08 15:52:34 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-08-08 15:52:34 +0800 |
commit | ba6f366845f8b664be71938dc64b57d706f68a21 (patch) | |
tree | 93d61c3a93c0de4e5f1176ab9ddc43d68d607a77 /test | |
parent | 35d0affb2b19a38ae43ac991021dd3c888dc3aa6 (diff) |
+network
Diffstat (limited to 'test')
-rw-r--r-- | test/04Network/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/04Network/main.cpp b/test/04Network/main.cpp index a792e53..d24e2b0 100644 --- a/test/04Network/main.cpp +++ b/test/04Network/main.cpp @@ -60,13 +60,13 @@ int main(int argc, char* argv[]) Window* wnd = Window::get(); Window::Setting wndSetting; - wndSetting.width = 600; - wndSetting.height = 512; + wndSetting.width = 400; + wndSetting.height = 300; wndSetting.title = "test"; wndSetting.fps = 60; wndSetting.vsync = false; wndSetting.fullscreen = false; - wndSetting.resizable = false; + wndSetting.resizable = true; wnd->init(&wndSetting); Thread t("Count", thread2Runner); |