g.scale(2, 2);
for (int x = 0; x <= 2; x++) {
for (int y = 0; y <= 2; y++) {
thisMap = m_mapMatrix.getMap(x, y);
if (thisMap != null && thisMap.isRendering()) {
thisMap.render(thisMap.getXOffset() / 2,
thisMap.getYOffset() / 2, 0, 0,
(gc.getScreenWidth() - thisMap.getXOffset()) / 32,
(gc.getScreenHeight() - thisMap.getYOffset()) / 32,
false);
}