A Meme. The first half shows a screenshot of the game “Banana” on Steam, showing how it weighs 1.89 Gigabytes. The second half shows a couple of native americans talking on a snowy landscape while inspecting footprints on the snow.

Native A: A western game dev has been here. Native B: How can you tell? Native A: It weighs 1.89 Gigabytes.

  • dalekcaan@lemm.ee
    link
    fedilink
    arrow-up
    5
    ·
    7 hours ago

    I’m not sure it’s exclusive to Western developers, as I don’t know much about software in other parts of the world, but there does seem to be an unfortunate trend of companies forgoing software optimization because modern computers are usually beefy enough to handle it, and it’s cheaper to ship out inefficient slapdash software than it is to take the time and resources to fix it.

    • leftytighty@slrpnk.net
      link
      fedilink
      English
      arrow-up
      2
      ·
      6 hours ago

      Not making excuses for every instance but in the vast majority of cases, optimizations are done by making trades between runtime performance, RAM usage, and disk space. Of these, disk is cheapest. You might optimize something and end up using more disk space as a result.

      For example not all video cards support compressed texture file formats (though gaming hardware is likely to be close to 100% now…) so you might store texture memory uncompressed on disk (bigger size) to save on the decompression needing to happen on the CPU before transfer to the GPU.

      • dalekcaan@lemm.ee
        link
        fedilink
        arrow-up
        1
        ·
        4 hours ago

        I mean sure, there are always concessions to be made, but what I had in mind was more the “include this entire 6 GB library so I can use this particular function once” kind of bloat.