1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-24 09:25:01 +00:00
freebsd-ports/games/xsoldier/files/patch-opening.c
Mathieu Arnold 8dab11a002 Remove $FreeBSD$ from patches files in categories a-j.
With hat:	portmgr
Sponsored by:	Absolight
2015-05-22 13:34:20 +00:00

16 lines
549 B
C

--- opening.c.orig
+++ opening.c
@@ -95,10 +95,10 @@
{
draw_string(120, 330+i*25, player->Rec[i].name,
strlen(player->Rec[i].name));
- sprintf(buff,"%2d-%2d",player->Rec[i].loop,
+ snprintf(buff, sizeof(buff), "%2d-%2d",player->Rec[i].loop,
player->Rec[i].stage);
draw_string(270, 330+i*25, buff, strlen(buff));
- sprintf(buff,"%8d",player->Rec[i].score);
+ snprintf(buff, sizeof(buff), "%8d",player->Rec[i].score);
draw_string(350, 330+i*25, buff, strlen(buff));
}
}