]> git.sesse.net Git - nageru/blobdiff - nageru/scene.cpp
Make the theme cardinality warnings more lenient.
[nageru] / nageru / scene.cpp
index 11a3d2171de11851f89bf4e3f663a2f7b51780f6..8e3dfd21d86587c20ed909a76128b426d6aa8d8e 100644 (file)
@@ -475,7 +475,7 @@ int Scene::finalize(lua_State* L)
                }
        }
        const size_t total_cardinality = real_cardinality * (only_one_mode ? 1 : 2);
-       if (total_cardinality > 200) {
+       if (total_cardinality > 400) {
                print_warning(L, "The given Scene will instantiate %zu different versions. This will take a lot of time and RAM to compile; see if you could limit some options by e.g. locking the input type in some cases (by giving a fixed input to add_input()).\n",
                        total_cardinality);
        }