diff --git a/libfxengine.a b/libfxengine.a index 7843cfd..3be6e11 100644 Binary files a/libfxengine.a and b/libfxengine.a differ diff --git a/src/fxengine.c b/src/fxengine.c index af23b5c..d0b19ec 100644 --- a/src/fxengine.c +++ b/src/fxengine.c @@ -21,7 +21,7 @@ GNORETURN void system_error(uint32_t code) { - ll_display_log(); + ll_display(); while(1) getkey(); } @@ -64,12 +64,12 @@ void fe_display(const uint32_t libprof_channel) dupdate(); #ifdef USE_LIBLOG - ll_log("VRAM contents sent."); + ll_send("VRAM contents sent."); #endif dclear(C_WHITE); #ifdef USE_LIBLOG - ll_log("VRAM cleared."); + ll_send("VRAM cleared."); #endif } @@ -103,9 +103,9 @@ void fe_update(const uint32_t libprof_channel) #ifdef USE_LIBLOG char fps_str[10]; sprintf(fps_str, ">> FPS = %d", fps); - ll_log(fps_str); + ll_send(fps_str); #else - ll_log(">> FPS not available"); + ll_send(">> FPS not available"); #endif //dclear(C_WHITE); } diff --git a/src/space.c b/src/space.c index 966c372..4b189b6 100644 --- a/src/space.c +++ b/src/space.c @@ -90,7 +90,7 @@ void fe_vertex_translate(fe_ivertex * v) v->translated.x, v->translated.y, v->translated.z); - ll_log(str); + ll_send(str); #endif } diff --git a/src/zbuffer.c b/src/zbuffer.c index 282b2e4..587ff5b 100644 --- a/src/zbuffer.c +++ b/src/zbuffer.c @@ -31,7 +31,7 @@ void fe_zbuffer_clear() for (indice = 0; indice < size_uint32; indice ++) zbuffer[indice] = fe_max_dist; #ifdef USE_LIBLOG - ll_log(">> ZBuffer cleared."); + ll_send(">> ZBuffer cleared."); #endif }