14
jonii
5y

Love it when you try to fix a bug and realize the bug only occurs in debug mode.
No clue why, but also not my fucking problem, users ain't gonna debug :D

Comments
  • 8
    Normally thats a sign of bad code.
  • 10
    This screams race condition
  • 7
    Timing issue, multithreading problem like race condition, buggy synchronisation or alike.

    It may also be due to compiler optimization (although the issues then are usually in the release version)

    But whatever it is, it's worth tracking it.
  • 7
    Better than a bug that never happens when debugging.
  • 1
    @hell had it once with some web framework - JS were raising errors after some update, it had built-in debug mode for website, giving more info and preventing JS obfuscation, so when debug mode was on JS did not raise any error and all worked fine...
  • 0
    That’s the “login with google” button in my game basically xD

    I need to setup the debug key signature or smth for it to work in debug builds but cba to
  • 0
    Another thing that I’ve seen cause this is having a side effect in a property read.
Add Comment