Garrett Guillotte
Garrett Guillotte
From `evtest`'s man page: > The output of evtest shows the information presented by the kernel; based on this information it can be determined whether the bug may be a...
That's returned from src/spaceObjects/shipTemplateBasedObject.cpp in a `for` loop. The string is wrapped in `trMark()` with a comment from a7b32612a: ``` // Note, translators: this is a compromise. // Because of...
By default SDL2 converts SIGINT and SIGTERM to SDL_QUIT, and I'm not sure headless/proxy modes handle SDL_QUIT. `SDL_HINT_NO_SIGNAL_HANDLERS` configures this, so if I edit SeriousProton/src/engine.cpp to override that: ```diff diff...
[SeriousProton engine.cpp L109-146](https://github.com/daid/SeriousProton/blob/a2e0d2d1aad5ef4708d62c8befd407fdf3bee3a7/src/engine.cpp#L107-L146) contains an if/else that only runs the SDL event queue handling if there's a window (`if (Window::all_windows.size() == 0) ... else while(running { SDL_Event event; ...`): ```cpp...
#725 was closed with a suggestion to move the scanning label names to the target ships. But revisiting this: - A non-ship SpaceObject can be scannable if it has a...
This isn't trivial because of how ships are added to the Science database and linked to from the Science radar, and it's hard to pin this on @piglit or any...
I don't like this implementation, which also requires a change to SeriousProton to send a `User-Agent` header in the request (otherwise GitHub forbids it): https://gist.github.com/oznogon/c7dce727388abead734c7b0284e0a4b6 But it shows that we...
This does appear to be fixed, I'm no longer able to reproduce.
macOS CI fails on `c++11-extensions` warnings in Box2D.
Project gave up on an upstream fix. For anyone who comes across this, here's what was added to CMake as a workaround. ``` if(${CMAKE_HOST_SYSTEM_NAME} STREQUAL "Linux") execute_process(COMMAND sed -i -e...