Merge pull request #1571 from lioncash/printf

ctr_gfx: Fix a missing printf formatting specifier
This commit is contained in:
Twinaphex 2015-04-02 20:11:13 +02:00
commit f1a246c95e

View File

@ -291,7 +291,8 @@ static bool ctr_frame(void* data, const void* frame,
frames = 0;
}
printf("fps: %8.4f frames: %i\r", fps, total_frames++, currentTick);fflush(stdout);
printf("fps: %8.4f frames: %i current tick: %llu\r", fps, total_frames++, currentTick);
fflush(stdout);
// gfxFlushBuffers();
// gspWaitForEvent(GSPEVENT_VBlank0, true);