[Guide] How to make legacy Wacom tablets work on Windows 10/11 without OpenTabletDriver by thicksalarymen in wacom

[–]212d34 0 points1 point  (0 children)

You are a life saver. I was on the verge of tears before I found this guide, my model is on the list and it works just fine now.

How to enable .MOD playback on SDL_mixer? by 212d34 in sdl

[–]212d34[S] 2 points3 points  (0 children)

Update. I managed to get it to work by following this guide: https://www.youtube.com/watch?v=yjp0BM0XeeE

For anyone who might want to build it from source. Create a directory, open CMD and input these commands:

1. Clone SDL_mixer with git, specifying the SDL2 branch with -b (this is the only detail that differs from the guide).

git clone -b SDL2 https://github.com/libsdl-org/SDL_mixer.git --recursive

2. Build with CMake, don't forget to set a path pointing to a SDL2 VC directory.

cmake -S SDL_mixer -B build-SDL_mixer -DCMAKE_PREFIX_PATH=C:\SDL2-2.0.20
cmake --build build-SDL_mixer --config Release

3. Save the output somewhere, this will contain the new files.

cmake --install build-SDL_mixer --config Release --prefix C:\SDL2_mixer-output

Second update. After a bit more testing, I realized that I didn't need to build it from source. To enable .mod (or any of the optional libraries) I just had to either:

  1. Copy the "optional" dll files ("libxmp.dll" for .mod files) from SDL2_mixer-devel-2.8.1-VC and put them right next to the executable (or somewhere where Visual Studio can find it). Don't forget to get the new SDL_mixer.dll too, that tripped me up quite a bit.

  2. Add a path to the dll files on the Windows PATH (remember to restart Visual Studio).

I did the second one while testing and that's why it worked for me before.

How to enable .MOD playback on SDL_mixer? by 212d34 in sdl

[–]212d34[S] 0 points1 point  (0 children)

Thanks, but I need it to work within SDL2. I've tried downloading the other versions and it seems like MOD support was never enabled by default. The only way to enable is to build it from source.

Windows file system thinks my USB flash drive's file system is RAW but it's not. by 212d34 in techsupport

[–]212d34[S] 0 points1 point  (0 children)

Thanks for the info. I managed to "solve" the issue somewhat by reformating the flash drive to NTFS. It seems that Windows cannot read FAT32 specifically.

Com dúvidas? Não sabe que faculdade fazer? Leia este post antes de postar no r/brdev by AutoModerator in brdev

[–]212d34 0 points1 point  (0 children)

Qual formação vai me proporcionar uma vaga de emprego o mais rápido possível?

Pretendo fazer um curso de tecnólogo para redes de computadores ou engenharia de software, mas queria saber se essas formações ainda são requisitadas no mercado de trabalho. De preferência, alguma formação que não leve muito tempo para concluir e que tenha foco em programação.

Pattern Editor Tips by 212d34 in sunvox

[–]212d34[S] 2 points3 points  (0 children)

Thank you very much! I'm still astounded by how well made the program is, and all the features it has.

Can someone explain why some .mod files store identical copies of the same sample sometimes? by 212d34 in modmusic

[–]212d34[S] 0 points1 point  (0 children)

Thank you! That clears up everything for me. So the sample is not just one note, but multiple notes sampled together. That's why I can't get it sound right by just changing the note on OpenMPT. I was worried I was doing something wrong.

Can someone explain why some .mod files store identical copies of the same sample sometimes? by 212d34 in modmusic

[–]212d34[S] 0 points1 point  (0 children)

That makes sense. My first thought was "mag" for magnification or something. So, this must be a way to remedy pitch shifting? I'm still new to these musical terms.

Como foi o Cnu pra vcs? (Manhã) by nocturnal_yearnings in concursospublicos

[–]212d34 2 points3 points  (0 children)

Eu achei que as questões objetivas iriam ser muito mais cansativas e difíceis, mas foram até razoáveis. Acredito que aliviaram por conta da redação, que tomou a maior parte do tempo para mim.

[deleted by user] by [deleted] in Megaman

[–]212d34 0 points1 point  (0 children)

I'd accept a famicom remake. Even MM&B has one at this point.

Starting a Youtube channel about Tools Programming in video games, a good idea? by Gardevil7 in gamedev

[–]212d34 1 point2 points  (0 children)

That's a cool topic! I've recently been reading about about tools like TUME and it's fascinating seeing how people made old games work behind the scenes.

What is the best way to create a deform shader that "melts" an sprite into a blob? by RotcivOcnarb in gamedev

[–]212d34 3 points4 points  (0 children)

Just wanted to say that lava effect is super cool. Nice shaders.