Fix CJK in tooltips.
--- a/hedgewars/uStore.pas Mon Feb 22 00:53:04 2010 +0000
+++ b/hedgewars/uStore.pas Mon Feb 22 05:40:24 2010 +0000
@@ -1360,7 +1360,10 @@
wa, ha: LongInt;
tmpline, tmpline2, tmpdesc: shortstring;
begin
-font:= fnt16;
+font:= CheckCJKFont(caption,fnt16);
+font:= CheckCJKFont(subcaption,font);
+font:= CheckCJKFont(description,font);
+font:= CheckCJKFont(extra,font);
// make sure there is a caption as well as a sub caption - description is optional
if caption = '' then caption:= '???';