Fixed minor wording errors in README

This commit is contained in:
Sasha Koshka
2022-07-17 19:17:18 -04:00
committed by GitHub
parent d8b5a90872
commit 163b9e1135

View File

@@ -68,7 +68,7 @@ I've either been asked these, or I expect to be at some point.
> What's with the cryptic variable names like `f22` and `i6`?
A lot of this code is decompiled from the original java version, and those are names the compiler assigned to the variables. Much of the code is extremely obfuscated due to what are probably compiler optimizations, and a lot of them have not been deciphered and renamed yet. This is why they mostly appear in the `gameLoop` function.
A lot of this code is decompiled from the original java version, and those are names the decompiler assigned to the variables. Much of the code is extremely obfuscated due to what are probably compiler optimizations, and some variables have not been deciphered and renamed yet. This is why they mostly appear in the `gameLoop` function.
> Why is it so slow?