diff options
author | Kahrl <kahrl@gmx.net> | 2012-01-22 01:14:57 +0100 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2012-01-22 17:31:20 +0200 |
commit | 4799a8f7619b1aad6f9f0c977849be81f17a3672 (patch) | |
tree | 63cd5472e2726b4d2df1102d60f59438b462394a /src/guiInventoryMenu.cpp | |
parent | 02b334a679f455483c88f381a616065cb3984003 (diff) | |
download | minetest-4799a8f7619b1aad6f9f0c977849be81f17a3672.tar.gz minetest-4799a8f7619b1aad6f9f0c977849be81f17a3672.tar.bz2 minetest-4799a8f7619b1aad6f9f0c977849be81f17a3672.zip |
cleanup
Diffstat (limited to 'src/guiInventoryMenu.cpp')
-rw-r--r-- | src/guiInventoryMenu.cpp | 4 |
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)) { |