=== modified file 'src/dskSelectMap.cpp' --- src/dskSelectMap.cpp 2009-04-27 22:00:38 +0000 +++ src/dskSelectMap.cpp 2009-06-11 18:57:43 +0000 @@ -142,6 +142,7 @@ AddPreviewMinimap(11, 110, 445, 140, 140, NULL); AddText(12, 260, 470, _("Map: "), COLOR_YELLOW, glArchivItem_Font::DF_LEFT, NormalFont); + AddText(13, 260, 490, _("Mapfile: "), COLOR_YELLOW, glArchivItem_Font::DF_LEFT, NormalFont); // "Eigene" auswählen optiongroup->SetSelection(5, true); @@ -223,6 +224,9 @@ ctrlText *text = GetCtrl(12); text->SetText(std::string(map->getHeader().getName()) ); text->Move(110 + preview->GetWidth() + 10, text->GetY(true), true); + text = GetCtrl(13); + text->SetText(path.c_str()); + text->Move(110 + preview->GetWidth() + 10, text->GetY(true), true); } } }