Font newFont = (Font)loadedFonts.get("microgme.ttf");
Constants.FONT_MENU_SMALL = newFont.deriveFont(20f);
And later…
font = Constants.FONT_MENU_SMALL.deriveFont(Font.BOLD, Constants.FONT_MENU_SMALL.getSize2D() - 3.f);
In Java 1.5 it shows text like this:
http://www.gamelizard.com/images/games/rimscape/textIn1.5.gif
In Java 1.4.2 it shows text like this:
http://www.gamelizard.com/images/games/rimscape/textIn1.4.2.gif
Why is it so different? I want the text to always look like it shows in 1.5. Is there any way I can make them act the same?