diff --git a/xdk/xdk_d3d.cpp b/xdk/xdk_d3d.cpp index 17b7686ba5..4c5a64264a 100644 --- a/xdk/xdk_d3d.cpp +++ b/xdk/xdk_d3d.cpp @@ -792,11 +792,8 @@ static bool xdk_d3d_frame(void *data, const void *frame, MEMORYSTATUS stat; GlobalMemoryStatus(&stat); - //Output memory usage - char fps_txt[128]; char buf[128]; - bool ret = false; snprintf(buf, sizeof(buf), "%.2f MB free / %.2f MB total", stat.dwAvailPhys/(1024.0f*1024.0f), stat.dwTotalPhys/(1024.0f*1024.0f)); xfonts_render_msg_place(d3d, font_x + 30, font_y + 50, 0 /* scale */, buf);