Search found 3075 matches

by slime
Sat Dec 30, 2023 9:14 pm
Forum: Ports
Topic: Probability of official Nintendo Switch port?
Replies: 6
Views: 13626

Re: Probability of official Nintendo Switch port?

Being restricted to people who have Nintendo's NDA access doesn't mean the source code is automatically unreadable, that'd be a choice for the author to make. Or you could contact people who've shipped games using that port. But glad to know ports do exists which makes me wondering, is there any gam...
by slime
Sat Dec 30, 2023 6:30 pm
Forum: Ports
Topic: Probability of official Nintendo Switch port?
Replies: 6
Views: 13626

Re: Probability of official Nintendo Switch port?

There are multiple unofficial Switch ports that use Nintendo's actual SDK rather than a homebrew route. Once you've signed Nintendo's NDAs you can probably contact the authors of those ports. They can't be publicly available to people who haven't signed those NDAs because they're using the official ...
by slime
Sun Dec 24, 2023 6:43 pm
Forum: General
Topic: Best usecases for love.keypressed/keyreleased vs love.keyboard.isDown
Replies: 6
Views: 13517

Re: Best usecases for love.keypressed/keyreleased vs love.keyboard.isDown

keypressed is good for actions (like opening a menu, or consuming an item, or whatever). isDown is good for things that happen continuously over time (like movement). If you try to use isDown for actions you'll run into edge cases where user input can be missed – for example if a key is pressed and ...
by slime
Wed Dec 20, 2023 2:57 pm
Forum: Support and Development
Topic: [REQUESTING HELP] Optimization issues
Replies: 5
Views: 15722

Re: [REQUESTING HELP] Optimization issues

According to some CPU benchmarks I googled, your Intel CPU is almost 15% faster than the AMD CPU you replaced it with, when doing single threaded work.
by slime
Fri Dec 15, 2023 6:54 pm
Forum: Support and Development
Topic: Love tutorial about input
Replies: 3
Views: 22252

Re: Love tutorial about input

It does throw an error if you use an invalid key constant.

That particular tutorial was created almost a decade and a half ago when love's APIs were a little different, there are probably much better ones to look at these days.
by slime
Sun Dec 10, 2023 3:25 pm
Forum: Support and Development
Topic: LÖVE 11.5 — is Windows 7 no longer supported?
Replies: 5
Views: 10284

Re: LÖVE 11.5 — is Windows 7 no longer supported?

Hello, did Windows 7 support end with 11.5? I couldn't find anything in changelog or there on forums, also homepage still says "Vista+". I ask because I get "The procedure entry point CreateFile2 could not be located in the dynamic link library KERNEL32.dll" error on launching l...
by slime
Thu Dec 07, 2023 1:57 pm
Forum: General
Topic: Can someone compile for MS Windows pls? (solved)
Replies: 3
Views: 7411

Re: Can someone compile for MS Windows pls?

You can also download the standalone version of the lua-https library from https://github.com/love2d/lua-https/actions , if you're logged into github.
by slime
Mon Dec 04, 2023 1:11 am
Forum: General
Topic: LÖVE 11.5 released!
Replies: 19
Views: 199453

Re: LÖVE 11.5 released!

Bobble68 wrote: Sun Dec 03, 2023 9:49 pm Also, am I being stupid or does the homepage still only show 11.4?
Web browsers like to cache static pages like the love homepage. Refreshing (maybe force-refreshing) should make it update.
by slime
Sun Dec 03, 2023 6:47 pm
Forum: General
Topic: LÖVE 11.5 released!
Replies: 19
Views: 199453

Re: LÖVE 11.5 released!

Not yet unfortunately. You can follow the main github issue for it here . I think it should still be possible to selectively enable JIT compilation for specific functions via the jit.on function, which will be more reliable in terms of performance now that other Lua code isn't taking up the same mem...
by slime
Sun Dec 03, 2023 2:33 pm
Forum: General
Topic: LÖVE 11.5 released!
Replies: 19
Views: 199453

LÖVE 11.5 released!

LÖVE version 11.5 is out now! As usual download links are on the homepage and the full changelog is available on the wiki . This is a small release primarily to fix major bugs in LuaJIT's implementation of the pairs iterator, plus a few other bug fixes and minor changes in LÖVE itself. The version o...