Added todo to camera.c

This commit is contained in:
KikooDX 2020-12-21 13:37:19 +01:00
parent a42fbe24f5
commit f49f6719d3
1 changed files with 4 additions and 1 deletions

View File

@ -19,7 +19,10 @@ void camera_step(Camera *camera) {
}
void camera_init(Camera *camera, Player *player, const Level *level) {
/* NOTE: This system doesn't totally works, but it's good enough for now. */
/* NOTE: This system doesn't totally works, but it's good enough
* for now. TODO: Add informations about what isn't working
* correctly and/or fix the issues.
*/
/* check level size */
const Vec level_dim = {level->width * (TILE_SIZE / VEC_PRECISION * SCALE),
level->height * (TILE_SIZE / VEC_PRECISION * SCALE)};