this post was submitted on 24 Dec 2024
678 points (98.7% liked)

Games

32977 readers
2354 users here now

Welcome to the largest gaming community on Lemmy! Discussion for all kinds of games. Video games, tabletop games, card games etc.

Weekly Threads:

What Are You Playing?

The Weekly Discussion Topic

Rules:

  1. Submissions have to be related to games

  2. No bigotry or harassment, be civil

  3. No excessive self-promotion

  4. Stay on-topic; no memes, funny videos, giveaways, reposts, or low-effort posts

  5. Mark Spoilers and NSFW

  6. No linking to piracy

More information about the community rules can be found here.

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] AnyOldName3 6 points 20 hours ago (1 children)

It adds the executable permission (without which, things can't be executed) to all the files in the game's directory. You only need to be able to execute a few of those files, and there's a dedicated permission to control what can and can't be executed for a reason. Windows doesn't have a direct equivalent, so setting it for everything gives the impression that they're trying to make it behave like Windows rather than working with the OS.

[–] [email protected] 3 points 16 hours ago (1 children)

I mean i assume thats just easier to deal with updates where a game has multiple exe files that may or may not change names. Assuming everything in the directory is assumed to be safe, is there any downside to applying it to everything, aside from opening up the possibility of a user accidentally trying to execute like a texture file or something which I assume just wouldnt work? I actually don't know and im curious.

[–] [email protected] 4 points 16 hours ago (1 children)

You've pretty much got it. It's bad, but it's not horrible. Trying to execute some random file such as a texture basically just doesn't work.. but only by luck. It's possible, but unlikely that the data might look enough like an actual program to run and do something unpredictable.

I'm not aware of any major reasons why its a problem to make everything as executable (and I know that when I open an NTFS drive from linux, all the files are executable by default - because NTFS doesn't have that flag). From my point of view I just think its sloppy. I figure it can't be hard for GOG to just correctly identify which files are meant to be executable. For most games its just a single executable file - the same one that GOG's script is launching. And presumably the files that developers provided GOG have the correct flags in the first place.

Anyway, not really a big deal. Like I said, I just think it's a bit low-effort.

[–] [email protected] 4 points 15 hours ago

Yeah that's fair, and im not defending the practice, it just made me think of some games that Ive seen that have multiple executables, usually with an inbuilt launcher that i have to bypass. Or when games used to come with a dx11 and dx12 executable. Personally i find that in itself super sloppy and annoying as well, but it makes a kind of lazy sense to just apply it to all the game files, in that its just one less thing to have to change if you make an alteration to the name of the executable file or add a new executable for whatever reason. Just one less possible failure point. But yeah I can see how its definitely not best practice.