luismrsilva / cg-micromachines

3D version of the first MicroMachines game, made for the Computer Graphics course (2015/2016) at IST, CS BSc
1 stars 0 forks source link

Missing verbosity on teapot key causes weird output #60

Open luismrsilva opened 8 years ago

luismrsilva commented 8 years ago

It's not that weird. "T" key presses only appear on the console when pressing another key. This is likely due to some kind of buffering that waits to output a full line. And we're not printing any line on "T".

Solution: add print with endl on GameManager.cpp:359. Here: https://github.com/luismrsilva/cg-micromachines/blob/master/src/GameManager.cpp#L359