1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Fix some warnings and other minor details

This commit is contained in:
kwolekr 2013-09-16 23:52:42 -04:00
parent 9bccd75e34
commit c0398224ef
4 changed files with 6 additions and 6 deletions

View file

@ -1473,8 +1473,8 @@ int main(int argc, char *argv[])
gui::IGUISkin* skin = guienv->getSkin();
std::string font_path = g_settings->get("font_path");
gui::IGUIFont *font;
bool use_freetype = g_settings->getBool("freetype");
#if USE_FREETYPE
bool use_freetype = g_settings->getBool("freetype");
if (use_freetype) {
std::string fallback;
if (is_yes(gettext("needs_fallback_font")))
@ -1686,7 +1686,7 @@ int main(int argc, char *argv[])
g_settings->set("port", itos(port));
if((menudata.selected_world >= 0) &&
(menudata.selected_world < worldspecs.size()))
(menudata.selected_world < (int)worldspecs.size()))
g_settings->set("selected_world_path",
worldspecs[menudata.selected_world].path);
@ -1718,7 +1718,7 @@ int main(int argc, char *argv[])
// Set world path to selected one
if ((menudata.selected_world >= 0) &&
(menudata.selected_world < worldspecs.size())) {
(menudata.selected_world < (int)worldspecs.size())) {
worldspec = worldspecs[menudata.selected_world];
infostream<<"Selected world: "<<worldspec.name
<<" ["<<worldspec.path<<"]"<<std::endl;