X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=engineoutput.c;h=07524284c4d401d2cc6ff596d42d9e728bc3d2c4;hb=ee7ad29e757ab4f99b8b776ce7e8ebee5081767a;hp=157cabf9a163f8763d11d444417061bf187c9e4f;hpb=27ad2c2fd3659574b7e7e44ba061b9daba4bf320;p=xboard.git diff --git a/engineoutput.c b/engineoutput.c index 157cabf..0752428 100644 --- a/engineoutput.c +++ b/engineoutput.c @@ -124,7 +124,7 @@ MakeEngineOutputTitle () // back end, due to front-end wrapper for SetWindowText, and new SetIcon arguments void -SetEngineState (int which, int state, char * state_data) +SetEngineState (int which, enum ENGINE_STATE state, char * state_data) { int x_which = 1 - which; @@ -503,10 +503,10 @@ UpdateControls (EngineOutputData *ed) unsigned long nps_100 = ed->nodes / ed->time; if( nps_100 < 100000 ) { - snprintf( s_label, sizeof(s_label)/sizeof(s_label[0]), "NPS: %lu", nps_100 * 100 ); + snprintf( s_label, sizeof(s_label)/sizeof(s_label[0]), "%s: %lu", _("NPS"), nps_100 * 100 ); } else { - snprintf( s_label, sizeof(s_label)/sizeof(s_label[0]), "NPS: %.1fk", nps_100 / 10.0 ); + snprintf( s_label, sizeof(s_label)/sizeof(s_label[0]), "%s: %.1fk", _("NPS"), nps_100 / 10.0 ); } }