dylanetaft
dylanetaft
Glancing at it...I am not the owner of the library. I don't think it is easily fixable, and no the error should not be ignored. libblepp has a single queue,...
Do you have two Bluetooth adapters in your machine? bluetoothctl list will show.
This is gonna be one of 3 things I bet. 1) Two+ BT adapters, a BT4 incapable device is being used because the right one hasn't been specified. 2) moe5k:...
Just create your SDL_Surface for the screen and SDL_Window outside pdcurses and scale the SDL_Surface by a whole number. You can also choose a filter method.
Was looking at the code. If you are using TTF fonts, just set the env variable PDC_FONT_SIZE. While not tested, it looks like you could also extern pdc_font_size and set...
There's lots of ways to add LWS into a cmake file. - Build as a submodule, link statically - Link dynamically with an OS installed release - Link dynamically and...
A quick commit review - I don't think they're preallocating primarily to reduce filesystem fragmentation. They're doing it to avoid inner-file fragmentation, internally the file is ordered - see line...
I'm running into issues with this too. I am still troubleshooting it. I am passing -DSPDLOG_ACTIVE_LEVEL=SPDLOG_LEVEL_TRACE to my compiler and it works in a test case with header-only include. In...
For the life of me I cannot isolate it. I tried linking statically in my test case, the macros work fine. They also work fine header only. It is bizarre...
spdlog::set_level(spdlog::level::trace); spdlog::set_pattern("[source %s] [function %!] [line %#] %v"); SPDLOG_TRACE("Hello world from this class {}",__LINE__); Output: [source ] [function ] [line ] Hello world from this class 53 [source ] [function...