1
mirror of https://github.com/mpv-player/mpv synced 2024-12-28 06:03:45 +01:00

Use translatable string instead of hardcoded message for process priority.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27445 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-08-09 15:45:00 +00:00
parent c324966059
commit ff2a3dd060

View File

@ -2640,7 +2640,7 @@ int gui_no_filename=0;
if(strcasecmp(priority_presets_defs[i].name, proc_priority) == 0)
break;
}
mp_msg(MSGT_CPLAYER,MSGL_STATUS,"Setting process priority: %s\n",
mp_msg(MSGT_CPLAYER,MSGL_STATUS,MSGTR_SettingProcessPriority,
priority_presets_defs[i].name);
SetPriorityClass(GetCurrentProcess(), priority_presets_defs[i].prio);
}