]> git.lizzy.rs Git - minetest.git/blobdiff - src/inventorymanager.cpp
FormSpec: Add StaticTextSpec and superimpose over item image buttons
[minetest.git] / src / inventorymanager.cpp
index 476768b8c8828752513755359c0794aefa7014ff..5b29b6f173531ccb1d2622e780f1867c41cccbf1 100644 (file)
@@ -818,9 +818,9 @@ void ICraftAction::apply(InventoryManager *mgr,
                // Add the new replacements to the list
                IItemDefManager *itemdef = gamedef->getItemDefManager();
                for (std::vector<ItemStack>::iterator it = temp.begin();
-                               it != temp.end(); it++) {
+                               it != temp.end(); ++it) {
                        for (std::vector<ItemStack>::iterator jt = output_replacements.begin();
-                                       jt != output_replacements.end(); jt++) {
+                                       jt != output_replacements.end(); ++jt) {
                                if (it->name == jt->name) {
                                        *it = jt->addItem(*it, itemdef);
                                        if (it->empty())
@@ -850,7 +850,7 @@ void ICraftAction::apply(InventoryManager *mgr,
        // Put the replacements in the inventory or drop them on the floor, if
        // the invenotry is full
        for (std::vector<ItemStack>::iterator it = output_replacements.begin();
-                       it != output_replacements.end(); it++) {
+                       it != output_replacements.end(); ++it) {
                if (list_main)
                        *it = list_main->addItem(*it);
                if (it->empty())
@@ -886,7 +886,7 @@ bool getCraftingResult(Inventory *inv, ItemStack& result,
                std::vector<ItemStack> &output_replacements,
                bool decrementInput, IGameDef *gamedef)
 {
-       DSTACK(__FUNCTION_NAME);
+       DSTACK(FUNCTION_NAME);
 
        result.clear();