sechshelme

Results 6 comments of sechshelme

I had about a month ago `SDL_SetWindowPosition(win, 200, 200);` Tried directly after `SDL_CreateWindow(...)`, it didn't work. Now I tried it again and it worked right away. I also use Linux...

True, whom I use in another program, e.g. Codeblooks do something, then something happens. I included a printf to check. If I press Ctrl-V in the code block, XNextEvent runs...

And who would change it like that? ```pascal type TSDL_Bool = cbool; const SDL_FALSE = 0; SDL_TRUE = 1; // SDL_FALSE = TSDL_Bool(0); // SDL_TRUE = TSDL_Bool(1); ``` or ```pascal...

> Can you re-run these commands in a clean directory. and build in verbose mode? > > ```shell > make VERBOSE=1 > ``` > > And also run `file *`...

```bash $ file * CMakeCache.txt: ASCII text CMakeFiles: directory cmake_install.cmake: ASCII text docs: directory dummy.sym: ASCII text libSDL3_ttf.so: symbolic link to libSDL3_ttf.so.0 libSDL3_ttf.so.0: symbolic link to libSDL3_ttf.so.0.0.0 libSDL3_ttf.so.0.0.0: ELF 64-bit...

>You're targeting x86-64 Linux, but your link command contains /usr/local/bin/SDL3.dll. You got me straight to the point. I deleted the DLL file. Afterwards it went without any problems. Thanks for...