I’ll be playing a game, and then one day it won’t work. After updating my graphics drivers, it works again. But the game didn’t receive an update, so why does it just break?

  • marcos@lemmy.world
    link
    fedilink
    arrow-up
    4
    arrow-down
    2
    ·
    2 months ago

    My guess is that your OS changed.

    But I wouldn’t put some GPU manufacturers breaking your hardware on purpose completely out of the picture.

    • FiveMacs@lemmy.ca
      link
      fedilink
      arrow-up
      1
      ·
      2 months ago

      `import datetime import sys

      Get the current day of the week

      current_day = datetime.datetime.now().weekday()

      Check if the current day is Tuesday (weekday() returns 1 for Tuesday)

      if current_day == 1: raise RuntimeError(“Intentional crash: Today is Tuesday.”) else: print(“Today is not Tuesday. Continuing…”) `