summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKahrl <kahrl@gmx.net>2012-01-22 01:14:57 +0100
committerPerttu Ahola <celeron55@gmail.com>2012-01-22 17:31:20 +0200
commit4799a8f7619b1aad6f9f0c977849be81f17a3672 (patch)
tree63cd5472e2726b4d2df1102d60f59438b462394a
parent02b334a679f455483c88f381a616065cb3984003 (diff)
downloadminetest-4799a8f7619b1aad6f9f0c977849be81f17a3672.tar.gz
minetest-4799a8f7619b1aad6f9f0c977849be81f17a3672.tar.bz2
minetest-4799a8f7619b1aad6f9f0c977849be81f17a3672.zip
cleanup
-rw-r--r--src/guiInventoryMenu.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/guiInventoryMenu.cpp b/src/guiInventoryMenu.cpp
index cd371d062..f33460906 100644
--- a/src/guiInventoryMenu.cpp
+++ b/src/guiInventoryMenu.cpp
@@ -614,8 +614,6 @@ bool GUIInventoryMenu::OnEvent(const SEvent& event)
move_amount = MYMIN(m_selected_amount, 10);
else // left
move_amount = m_selected_amount;
- dstream << "move_amount=" << move_amount<<"\n";
- dstream << "m_selected_amount=" << m_selected_amount<<"\n";
if(identical)
{
@@ -625,8 +623,6 @@ bool GUIInventoryMenu::OnEvent(const SEvent& event)
m_selected_amount -= move_amount;
move_amount = 0;
}
- dstream << "move_amount=" << move_amount<<"\n";
- dstream << "m_selected_amount=" << m_selected_amount<<"\n";
}
else if(getAbsoluteClippingRect().isPointInside(m_pointer))
{