mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
games-puzzle/gnurobbo: remove unused patch
This commit is contained in:
committed by
James Le Cuirot
parent
4dead976a6
commit
caf30c21f0
@@ -1,220 +0,0 @@
|
||||
Index: konstruktor.c
|
||||
===================================================================
|
||||
--- a/konstruktor.c (Revision 412)
|
||||
+++ b/konstruktor.c (Arbeitskopie)
|
||||
@@ -247,7 +247,7 @@
|
||||
else if (level.w == 32 && level.h == 31)
|
||||
gsize = 1;
|
||||
inforedraw = 1;
|
||||
- sprintf(infostring, txt_konstruktor_Welcome_to_GNU_Robbo_Designer);
|
||||
+ strcpy(infostring, txt_konstruktor_Welcome_to_GNU_Robbo_Designer);
|
||||
robbo.keys = k_count_obj(KEY); /* count keys on a map */
|
||||
robbo.bullets = k_count_obj(BULLET) * 9; /* count bullets */
|
||||
game_area.redraw = REDRAW_EVERYTHING;
|
||||
@@ -688,7 +688,7 @@
|
||||
create_object(nx, ny, BOMB2);
|
||||
switch (K_icons[selected].game_obj) {
|
||||
case GROUND:
|
||||
- sprintf(infostring, txt_konstruktor_Ground);
|
||||
+ strcpy(infostring, txt_konstruktor_Ground);
|
||||
break;
|
||||
case STOP:
|
||||
sprintf(infostring, "%s (%d %s)",
|
||||
@@ -745,7 +745,7 @@
|
||||
txt_konstruktor_on_map);
|
||||
break;
|
||||
case EMPTY_FIELD:
|
||||
- sprintf(infostring, txt_konstruktor_Empty_Field);
|
||||
+ strcpy(infostring, txt_konstruktor_Empty_Field);
|
||||
break;
|
||||
case BUTTERFLY:
|
||||
sprintf(infostring, "%s (%d %s)",
|
||||
@@ -783,9 +783,9 @@
|
||||
case WALL:
|
||||
board[nx][ny].state = wallnumber;
|
||||
if (wallnumber != 3)
|
||||
- sprintf(infostring, txt_konstruktor_Wall);
|
||||
+ strcpy(infostring, txt_konstruktor_Wall);
|
||||
else
|
||||
- sprintf(infostring, txt_konstruktor_Black_Wall);
|
||||
+ strcpy(infostring, txt_konstruktor_Black_Wall);
|
||||
// game_area.redraw=REDRAW_EVERYTHING;
|
||||
break;
|
||||
case TELEPORT:
|
||||
@@ -905,7 +905,7 @@
|
||||
break;
|
||||
case K_RELOAD:
|
||||
if (cnt == lastselected) {
|
||||
- sprintf(infostring, txt_konstruktor_Level_reloaded);
|
||||
+ strcpy(infostring, txt_konstruktor_Level_reloaded);
|
||||
clear_screen();
|
||||
level_init();
|
||||
konstruktor_viewport_init();
|
||||
@@ -923,7 +923,7 @@
|
||||
k_redraw_all();
|
||||
cnt = -1;
|
||||
} else {
|
||||
- sprintf(infostring,
|
||||
+ strcpy(infostring,
|
||||
txt_konstruktor_Reload_level_select_again_to_reload);
|
||||
lastclick = 50;
|
||||
};
|
||||
@@ -1048,7 +1048,7 @@
|
||||
inforedraw = 1;
|
||||
break;
|
||||
case EMPTY_FIELD:
|
||||
- sprintf(infostring, txt_konstruktor_Empty_Field);
|
||||
+ strcpy(infostring, txt_konstruktor_Empty_Field);
|
||||
inforedraw = 1;
|
||||
break;
|
||||
case WALL:
|
||||
@@ -1055,9 +1055,9 @@
|
||||
if (cnt == selected)
|
||||
wallnumber = (wallnumber + 1) % 10;
|
||||
if (wallnumber != 3)
|
||||
- sprintf(infostring, txt_konstruktor_Wall);
|
||||
+ strcpy(infostring, txt_konstruktor_Wall);
|
||||
else
|
||||
- sprintf(infostring, txt_konstruktor_Black_Wall);
|
||||
+ strcpy(infostring, txt_konstruktor_Black_Wall);
|
||||
inforedraw = 1;
|
||||
break;
|
||||
case K_LASER:
|
||||
@@ -1078,7 +1078,7 @@
|
||||
teleportnr = (teleportnr % 11) + 1;
|
||||
break;
|
||||
case GROUND:
|
||||
- sprintf(infostring, txt_konstruktor_Ground);
|
||||
+ strcpy(infostring, txt_konstruktor_Ground);
|
||||
inforedraw = 1;
|
||||
break;
|
||||
case BIRD:
|
||||
@@ -1101,16 +1101,16 @@
|
||||
direction = (direction + 1) % 4;
|
||||
switch (direction) {
|
||||
case 0:
|
||||
- sprintf(infostring, txt_konstruktor_Direction_right);
|
||||
+ strcpy(infostring, txt_konstruktor_Direction_right);
|
||||
break;
|
||||
case 1:
|
||||
- sprintf(infostring, txt_konstruktor_Direction_down);
|
||||
+ strcpy(infostring, txt_konstruktor_Direction_down);
|
||||
break;
|
||||
case 2:
|
||||
- sprintf(infostring, txt_konstruktor_Direction_left);
|
||||
+ strcpy(infostring, txt_konstruktor_Direction_left);
|
||||
break;
|
||||
case 3:
|
||||
- sprintf(infostring, txt_konstruktor_Direction_up);
|
||||
+ strcpy(infostring, txt_konstruktor_Direction_up);
|
||||
break;
|
||||
}
|
||||
inforedraw = 1;
|
||||
@@ -1119,13 +1119,13 @@
|
||||
ltype = (ltype + 1) % 3;
|
||||
switch (ltype) {
|
||||
case 0:
|
||||
- sprintf(infostring, txt_konstruktor_Laser_Gun);
|
||||
+ strcpy(infostring, txt_konstruktor_Laser_Gun);
|
||||
break;
|
||||
case 1:
|
||||
- sprintf(infostring, txt_konstruktor_Blaster_Gun);
|
||||
+ strcpy(infostring, txt_konstruktor_Blaster_Gun);
|
||||
break;
|
||||
case 2:
|
||||
- sprintf(infostring, txt_konstruktor_Regular_Gun);
|
||||
+ strcpy(infostring, txt_konstruktor_Regular_Gun);
|
||||
break;
|
||||
}
|
||||
inforedraw = 1;
|
||||
@@ -1136,16 +1136,16 @@
|
||||
movable = (rmstate & 1);
|
||||
switch (rmstate) {
|
||||
case 0:
|
||||
- sprintf(infostring, txt_konstruktor_Fixed);
|
||||
+ strcpy(infostring, txt_konstruktor_Fixed);
|
||||
break;
|
||||
case 1:
|
||||
- sprintf(infostring, txt_konstruktor_Moveable);
|
||||
+ strcpy(infostring, txt_konstruktor_Moveable);
|
||||
break;
|
||||
case 2:
|
||||
- sprintf(infostring, txt_konstruktor_Rotating);
|
||||
+ strcpy(infostring, txt_konstruktor_Rotating);
|
||||
break;
|
||||
case 3:
|
||||
- sprintf(infostring, txt_konstruktor_Moveable_Rotating);
|
||||
+ strcpy(infostring, txt_konstruktor_Moveable_Rotating);
|
||||
break;
|
||||
}
|
||||
inforedraw = 1;
|
||||
@@ -1152,7 +1152,7 @@
|
||||
break;
|
||||
case K_INSERT:
|
||||
if (lastselected == cnt) {
|
||||
- sprintf(infostring, txt_konstruktor_Level_created);
|
||||
+ strcpy(infostring, txt_konstruktor_Level_created);
|
||||
insert = 1;
|
||||
/*
|
||||
* Clear board
|
||||
@@ -1176,7 +1176,7 @@
|
||||
cnt = -1;
|
||||
|
||||
} else {
|
||||
- sprintf(infostring,
|
||||
+ strcpy(infostring,
|
||||
txt_konstruktor_New_level_select_again_to_create);
|
||||
lastclick = 50;
|
||||
}
|
||||
@@ -1187,7 +1187,7 @@
|
||||
* Clear board
|
||||
*/
|
||||
if (lastselected == cnt) {
|
||||
- sprintf(infostring, txt_konstruktor_Level_cleared);
|
||||
+ strcpy(infostring, txt_konstruktor_Level_cleared);
|
||||
robbo.screws = 0;
|
||||
robbo.keys = 0;
|
||||
robbo.bullets = 0; /* Thunor: I added this as it was missing */
|
||||
@@ -1206,7 +1206,7 @@
|
||||
clear_entire_board();
|
||||
cnt = -1;
|
||||
} else {
|
||||
- sprintf(infostring,
|
||||
+ strcpy(infostring,
|
||||
txt_konstruktor_Clear_level_select_again_to_clear);
|
||||
lastclick = 50;
|
||||
}
|
||||
@@ -1215,9 +1215,9 @@
|
||||
case K_SAVE:
|
||||
if (lastselected == cnt) {
|
||||
if (insert == 1)
|
||||
- sprintf(infostring, txt_konstruktor_New_level_appended_to_pack);
|
||||
+ strcpy(infostring, txt_konstruktor_New_level_appended_to_pack);
|
||||
else
|
||||
- sprintf(infostring, txt_konstruktor_Changes_saved);
|
||||
+ strcpy(infostring, txt_konstruktor_Changes_saved);
|
||||
cnt = -1;
|
||||
|
||||
k_save_map();
|
||||
@@ -1228,10 +1228,10 @@
|
||||
lastclick = 50;
|
||||
|
||||
if (insert == 1)
|
||||
- sprintf(infostring,
|
||||
+ strcpy(infostring,
|
||||
txt_konstruktor_Save_select_again_to_save_new_level);
|
||||
else
|
||||
- sprintf(infostring,
|
||||
+ strcpy(infostring,
|
||||
txt_konstruktor_Save_select_again_to_save_changes);
|
||||
}
|
||||
inforedraw = 1;
|
||||
@@ -1297,7 +1297,7 @@
|
||||
konstruktor_end();
|
||||
cnt = -1;
|
||||
} else {
|
||||
- sprintf(infostring,
|
||||
+ strcpy(infostring,
|
||||
txt_konstruktor_Exit_designer_select_again_to_exit);
|
||||
lastclick = 50; /* very long click is used as
|
||||
* another click */
|
||||
Reference in New Issue
Block a user