bfops / playform

Voxel sandbox project in Rust
http://playformdev.blogspot.ca/
MIT License
212 stars 24 forks source link

Client startup race condition #119

Closed bfops closed 9 years ago

bfops commented 9 years ago

Sometimes the client just displays an empty sky (not even text or a cursor) when it starts.

bfops commented 9 years ago

I keep stashing back and forth, and somehow, this patch in client/src/main.rs seems to consistently fix it:

- 0, 0,
- video::OPENGL | video::FULLSCREEN_DESKTOP,
+ 1920, 1080,
+ video::OPENGL | video::FULLSCREEN,

Closing.