If a game has the same lines of code across all players, then why do some bugs only affect certain players?

736 viewsOtherTechnology

I was playing a game earlier when a friend was experiencing a bug. Wouldn’t it make sense for me to be experiencing the same bug since were playing the same game that’s coded with the same lines of code?

In: Technology

24 Answers

Anonymous 0 Comments

Game code is an set of complicated instruction (that spans to thousands of branchig if this than that kinda situation).

Due to the huge amount of branching of possibilities, there will be a set of choices that might lead to unexpected outcome that they did not handled.

+++++++++

Game also has to operate within numerous amount of different environment (that is your pc).

Some of this environment is simply better for the game compared to the others (due to them being more tested and its hard to test on all known combination of used hardware that is recommended for the game)

You are viewing 1 out of 24 answers, click here to view all answers.