Skip to content

Commit

Permalink
Use sprintf
Browse files Browse the repository at this point in the history
  • Loading branch information
inactive123 committed Jul 6, 2017
1 parent ec5a18d commit 0dcc329
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 @@ -444,7 +444,7 @@ static bool emu_step_load_data()


/* 64DD IPL LOAD - assumes "64DD_IPL.bin" is in system folder */
snprintf(disk_ipl_path, sizeof(disk_ipl_path), "%s%c64DD_IPL.bin", dir, slash);
sprintf(disk_ipl_path, "%s%c64DD_IPL.bin", dir, slash);

if (log_cb)
log_cb(RETRO_LOG_INFO, "64DD_IPL.bin path: %s\n", disk_ipl_path);
Expand Down

0 comments on commit 0dcc329

Please sign in to comment.