Sasha Szpakowski
Sasha Szpakowski
Did you figure out the Linux issue?
love for windows is bundled with the C/C++ redistributable DLLs that it needs to run on its target platforms, it doesn't need a separate download. For example the official love...
What OS and love version are you testing with? If you're on Linux, are you using the love AppImage or love installed through a package manager?
Make sure your version of SDL2 is up to date (the latest release is 2.28.5, and 2.30 is coming shortly). If you use love's AppImage instead of relying on system...
love now supports a wider range of key constants (everything SDL supports). For the mismatch in the top line of your keyboard, you'll have to bring it up in the...
This is probably where it's failing - the filetype would be symlink rather than directory, so physfs doesn't try to enumerate it as a directory: https://github.com/love2d/love/blob/93c2709f7ce7e2256a6f334a86bd20aad57bc547/src/libraries/physfs/physfs.c#L2585-L2586
Does `Source:pause` cover what you want? I'm not sure I understand the scenario where Source:stop's current behaviour causes trouble.
What's the larger context for wanting that specific behaviour? Right now I still don't really understand why you'd want that instead of for example just not seeking the source before...
Since the proposed change has the potential to break a lot of other people's code in a way that's hard to debug, I'd really like to understand the full context...
It actually looks like Source:stop already doesn't do anything to the seek position when the Source isn't playing/paused. Maybe that's something to fix, because the [documentation](https://love2d.org/wiki/Source) claims it does. But...