Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
inactive123 committed Jul 6, 2017
1 parent d0dd95f commit ec5a18d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libretro/libretro.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ int pad_present[4] = {1, 1, 1, 1};
static void n64DebugCallback(void* aContext, int aLevel, const char* aMessage)
{
char buffer[1024];
snprintf(buffer, 1024, "mupen64plus: %s\n", aMessage);
sprintf(buffer, "mupen64plus: %s\n", aMessage);
if (log_cb)
log_cb(RETRO_LOG_INFO, buffer);
}
Expand Down

0 comments on commit ec5a18d

Please sign in to comment.