Jake Rieger
Jake Rieger
Generated the defines for FA6 Pro since this repo doesn't have them. Didn't use the python script so it's missing some of the comments but it uses the same naming...
``` dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicudata.69.dylib Referenced from: /usr/local/opt/boost/lib/libboost_locale-mt.dylib Reason: image not found [1] 22324 abort axmldec ``` Got this error trying to run it on macOS. Seems like it...
You can't use `time.Now()` directly, it needs to be a pointer. Fixed version: ```go time := time.Now() err = client.SetActivity(client.Activity{ ... Timestamps: &client.Timestamps{ Start: &time, }, }) ```
Running the sample code in the readme works but I get this error in the console. I tried supplying a sample rate to the `fluidsynth.Synth()` constructor but that didn't remove...
```cpp if (!IsReadOnly() && ctrl && !shift && !alt && ImGui::IsKeyPressed(ImGui::GetKeyIndex(ImGuiKey_Z))) ``` should be changed to: ```cpp if (!IsReadOnly() && ctrl && !shift && !alt && ImGui::IsKeyPressed(ImGuiKey_Z)) ``` Error: `error...
Issue: [https://github.com/BalazsJako/ImGuiColorTextEdit/issues/158](https://github.com/BalazsJako/ImGuiColorTextEdit/issues/158)