diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-07-09 21:55:17 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-07-09 21:55:17 +0100 |
commit | f7c861e94eb95579c725dcd5d403acd7b4b318e3 (patch) | |
tree | e92db4f270a475de61b79c2f859314992dcd01ac /src/entities.c | |
parent | 9ff574061910f9562ccf4b2f6a21dda66e2a3f08 (diff) | |
download | gold-mine-run-f7c861e94eb95579c725dcd5d403acd7b4b318e3.tar.gz gold-mine-run-f7c861e94eb95579c725dcd5d403acd7b4b318e3.zip |
Assembler optimised blit copy hardcoded to 16x16
Diffstat (limited to 'src/entities.c')
-rw-r--r-- | src/entities.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entities.c b/src/entities.c index e24c119..0471fbc 100644 --- a/src/entities.c +++ b/src/entities.c @@ -61,7 +61,7 @@ void entities_draw() { dst.x = e->ox; dst.y = e->oy + MAP_OFFS_Y; - blit_copy(&dst); + blit_copy16x16(&dst); e->erase = 0; } |