From: Perttu Ahola Date: Sat, 23 Apr 2011 15:59:23 +0000 (+0300) Subject: fix to the previous commit X-Git-Url: http://81.2.79.47:8989/gitweb/?a=commitdiff_plain;h=96e09703ba461923c2d8ffa3aeed8c6d0169b13f;p=zefram%2Fminetest%2Fminetest_engine.git fix to the previous commit --- diff --git a/src/main.cpp b/src/main.cpp index 5349310d..0426b6a4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -162,6 +162,8 @@ SUGG: Draw cubes in inventory directly with 3D drawing commands, so that SUGG: Option for enabling proper alpha channel for textures TODO: A setting for enabling bilinear filtering for textures +TODO: Better control of draw_control.wanted_max_blocks + Configuration: -------------- @@ -1412,7 +1414,7 @@ int main(int argc, char *argv[]) #ifdef NDEBUG catch(std::exception &e) { - narrow_message = "Some exception, what()=\""; + std::string narrow_message = "Some exception, what()=\""; narrow_message += e.what(); narrow_message += "\""; dstream<