X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Fbump.c;h=a6f7aadcb929e8f5cb82f8a5ba693b6544a5ae0d;hb=dac99aab001a4589f2947e03a917e45b94033c98;hp=104b1270dc7125107ea4fe7790fd247ee47bb75c;hpb=bd3de1442570d4159c9b58e456b8d69fed9eadc8;p=dosdemo diff --git a/src/bump.c b/src/bump.c index 104b127..a6f7aad 100644 --- a/src/bump.c +++ b/src/bump.c @@ -7,7 +7,6 @@ #include "demo.h" #include "screen.h" -#include "tinyfps.h" static int init(void); static void destroy(void); @@ -60,7 +59,6 @@ static int init(void) const float rgbMul[9] = { 1.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 1.0f}; - initFpsFonts(); heightmap = malloc(sizeof(*heightmap) * fb_size); lightmap = malloc(sizeof(*lightmap) * fb_size); @@ -265,7 +263,5 @@ static void draw(void) renderLights(); renderBump((unsigned short*)vmem_back); - drawFps((unsigned short*)vmem_back); - swap_buffers(0); }