The "Normal Compass" and "Enhanced Compass" should give a larger display.
You should be able to buy one of those later as you progress in the game.
From PROGRAM\BATTLE_INTERFACE:
Code:
// PB: Compasses -->
string compasstype = CheckCharacterEquipByGroup(chMain, COMPASS_ITEM_TYPE); // KK
if (iRealismMode>0 || NAVIGATION_EQUIPMENT)
{
switch (compasstype)
{
case "": bRealBattleInterface = true; break; // KK
case "compass1": bRealBattleInterface = true; break;
case "compass2": bRealBattleInterface = false; break;
case "compass3": bRealBattleInterface = false; break; // KK
}
}
// PB: Compasses <--