diff options
author | Simponic <loganthebean222@gmail.com> | 2020-08-15 15:59:31 -0600 |
---|---|---|
committer | Simponic <loganthebean222@gmail.com> | 2020-08-15 15:59:31 -0600 |
commit | ee3af6b1f0e2ce6b8f27f7f4e33703cca6aaa876 (patch) | |
tree | 1a4bf5ac8ac895c7ffd66fd2b2736f5add44ebb5 /source/toolbox.c | |
parent | 3020917b0b1b03acb52cf9c26a45132c73715de3 (diff) | |
download | geometry-dash-gba-ee3af6b1f0e2ce6b8f27f7f4e33703cca6aaa876.tar.gz geometry-dash-gba-ee3af6b1f0e2ce6b8f27f7f4e33703cca6aaa876.zip |
Optimized level-loading a bit
Diffstat (limited to 'source/toolbox.c')
-rw-r--r-- | source/toolbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/toolbox.c b/source/toolbox.c index 32042a0..ff09fab 100644 --- a/source/toolbox.c +++ b/source/toolbox.c @@ -78,5 +78,5 @@ void obj_affine_copy (OBJ_AFFINE *dst, const OBJ_AFFINE *src, u32 count) { void obj_affine_identity(OBJ_AFFINE *aff) { // Make a pointer point to a identity affine matrix aff->pa = 1 << 8; aff->pb = 0; - aff->pc = 0 ; aff->pd = 1 << 8; + aff->pc = 0 ; aff->pd = 1 << 8; } |