| 4279 | } |
| 4280 | |
| 4281 | void PixelGameEngine::ConsoleCaptureStdOut(const bool bCapture) |
| 4282 | { |
| 4283 | if (bCapture) |
| 4284 | sbufOldCout = std::cout.rdbuf(ssConsoleOutput.rdbuf()); |
| 4285 | else |
| 4286 | std::cout.rdbuf(sbufOldCout); |
| 4287 | } |
| 4288 | |
| 4289 | void PixelGameEngine::UpdateConsole() |
| 4290 | { |
nothing calls this directly
no outgoing calls
no test coverage detected