Larian is having trouble fitting Baldur’s Gate III on the Xbox Series S, the lower-priced and lower-powered console in Microsoft’s ninth-generation lineup.

I was looking up more information on why there’s such an issue getting BG3 on Xbox, and found this article with a lot more detail on the topic.

EDIT: The issue isn’t graphics or frame rate; it’s memory. The article goes into detail.

  • astrionic@beehaw.org
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    1 year ago

    What I don’t understand is why they don’t just release both Xbox versions without split screen and then try to patch it in later. That way they’d satisfy the feature parity requirement (as I understand it) and people could at least play the game. I love that they’re still doing split screen despite it seemingly having fallen out of favour these days, but it’s hardly an essential feature.

    • magic_lobster_party@kbin.social
      link
      fedilink
      arrow-up
      0
      ·
      1 year ago

      It’s hard to communicate it to the consumer. Far from everybody follows this discourse surrounding the game. Maybe someone buys BG3 just for the split screen capability, just to disappointingly find out that the Xbox version doesn’t support it. Especially when they already have paid full price for the game.

      • astrionic@beehaw.org
        link
        fedilink
        arrow-up
        1
        ·
        1 year ago

        That’s a good point, but I feel like there are reasonable solutions for that like a disclaimer when buying the game digitally. For the physical version they could either put a sticker on it or just delay the physical version only. I also think that people who are informed enough to know about specific features like that are more likely to hear about this discourse.

  • sub_o@beehaw.org
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    Wait, there’s a split screen on Baldur’s Gate III? Normally I’d expect split screen games are for games with shorter gameplay loop, e.g. FPS, racing.

    It’s kinda interesting that there’s a split screen couch co-op for a long sprawling RPG. Also doesn’t that make all the UIs and texts even more busy / cramped?

    I just read that some people are trying out split screen. on steam deck, that’s wild.

  • Mothra@mander.xyz
    link
    fedilink
    arrow-up
    0
    ·
    1 year ago

    Okay so after seeing the bot TLDR and the other comments, I actually went and read the article. It’s a bit wishy washy as to why and mentions RAM could be the issue for S consoles.

    When I read the headline I thought it meant it was also not viable for PCs either, which doesn’t seem to be the case at all. Most PCs have at least 16GB ram these days.

    Why are people upset at all? I don’t get it. I actually think this is good, it will either force Microsoft to change their policy with consoles and/or release a line that can compete with PS. Or else. Meanwhile PC is still an option.

  • Feyter@programming.dev
    link
    fedilink
    arrow-up
    0
    ·
    1 year ago

    Don’t want to sound arrogant, but most people here (including OP and the writers of the article) don’t seam to know much about video game development.

    Because statements like “… Isn’t about graphics or frame rate; it’s memory” don’t make sense at all.

    Because if you fast memory is to small you would either more often read from a slower memory which results in less frame rate or you would need to make the stuff that fill up your memory (most often textures) smaller (lower resolution) which “reduces graphics”

    The article says something more business politics related: “Microsoft requires all games to run, feature-complete and without changes in quality or mechanics” on both Versions S and X. I’m not really believe this to be true because this would make the existence of more powerful X version completely pointless. However what I think can be the case is that Microsoft QA is forcing the studio to adapt the game for the series S before it could be published. This needs time. Since there is no low spec version for the PS5 there is no need for additional adaptations.

    • Jordan Lund@lemmy.one
      link
      fedilink
      English
      arrow-up
      0
      ·
      1 year ago

      Microsoft is OK with the S having a lower resolution and frame rate, that’s why it exists.

      They aren’t OK with the X having a feature that the S does not, and that’s what’s blocking Baldur’s Gate 3. Split screen is possible on the X, it’s not (currently) possible on the S, that’s what they’re working on.

      Removing split screen from both isn’t an option because the PS5 version supports it. The Xbox version would get murdered if they do it.

      The reason why split screen doesn’t work on the S is, yes, due to the available memory. At it’s best, it has 8GB that runs 1/2 the speed of the X, + another 2GB that are so slow as to be essentially useless for gaming.

      • Feyter@programming.dev
        link
        fedilink
        arrow-up
        0
        ·
        edit-2
        1 year ago

        What could split screen bring that it will not work with the S memory? Because one object will not take up twice the space just because split screen. The texture of it will (hopefully) only loaded once for both screens.

        What can change is the total amount of objects that are loaded into memory since the players can now be simultaneously on two different places.

        So as a Developer you will need to find a way to get around this. Maybe by reducing the textures of the objects even more, so that you can load more of them in the same space. Or maybe by remove non essential object from the scene at all so that by default less object needed to be loaded. Also the screen is now half the size so maybe limit the field of view more to start loading in objects a little later.

        What ever they decide to do, this will require additional steps that are only needed because MS want’s the game to be optimised for the series S.

        From a Developer perspective I could understand if they maybe decide to ditch the Xbox release completely because of this additional workload needed.

        Plus: if removing background objects from the scene in order to save memory is something that needs to be consistent on both S and X version because of MS policy, you will get “less graphics” on the X then what would be possible, just because the S exist… What completely undermines the complete existence of the X.

        And of course non of this is just because split screen. This will most likely be true for every game on Xbox. It’s just that for most games it’s enough to cut resolution down for the S and leave the rest as it is.

        • Jordan Lund@lemmy.one
          link
          fedilink
          English
          arrow-up
          0
          ·
          1 year ago

          That’s not the way split screen works.

          Each view of the world requires that the entire visible world be loaded twice, so that it can be seen from each players perspective independent of the other.

          If we go into a dungeon, I go left and you go right, it has to render both pathways simultaneously. In a single player or single screen two player game, it only has one path to consider.

          • Feyter@programming.dev
            link
            fedilink
            arrow-up
            0
            ·
            edit-2
            1 year ago

            Loading in memory and rendering are different things. Of course it needs to be rendered twice but also you cut resolution in half so rendered both screens is not that much more of work.