mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
8dab11a002
With hat: portmgr Sponsored by: Absolight
16 lines
549 B
C
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));
|
|
}
|
|
}
|