Jupeyy

Results 210 comments of Jupeyy

Haters gonna hate, but IMO we should not let it die bcs of a few MBytes. That's our smallest problem

just tested it on debian sid, for me win64 works: ``` cmake .. -GNinja -DCMAKE_RUST_COMPILER_TARGET=x86_64-pc-windows-gnu -DCMAKE_TOOLCHAIN_FILE=../cmake/toolchains/mingw64.toolchain ``` compile time: `ninja 270,64s user 14,90s system 922% cpu 30,968 total` vs. no...

random idea, set window as "always on top" (SDL call, if supported on windows) for the time the server is starting. But defs adds complexity. No flags to start it...

```c++ template void mem_zero(T *block, unsigned size) { static_assert(!std::is_polymorphic::value, "Used polymorphic class inside mem_zero"); memset(block, 0, size); } ``` It found one error: ```c++ static CClient *CreateClient() { CClient *pClient...

before the diff gets too big, lets decide what we want i personally don't care going with std::copy, tho you can probs replace most mem_zeros with standard classes list std::array...

Do you use a plain text editor? insane xd

I think it's OK if it's slightly more work to do in CPP. You always had to add the definition to the header and add the implementation to the CPP....

> Btw we could also think the other way around. For example for the variables definition for console commands and chat commands. If you add an command there, you have...

So I did some very basic benchmarks, that might not be 100% accurate but doesn't matter. Just to visualize it a bit: Single threaded python file generation: ```bash #!/bin/bash function...

> This probably only works with glewContextInit, because there were code paths that used `wglGetCurrentDC`. Maybe this can be improved for easier usage I load `wglGetCurrentDC` dynamically now too to...