]> git.mxchange.org Git - flightgear.git/commitdiff
Make mouse buttons work again.
authorTorsten Dreyer <Torsten@t3r.de>
Sat, 8 Jan 2011 11:50:55 +0000 (12:50 +0100)
committerTorsten Dreyer <Torsten@t3r.de>
Sat, 8 Jan 2011 11:50:55 +0000 (12:50 +0100)
src/Input/FGMouseInput.cxx

index b171e021bdac308185d4b1b4c7f8e0e8a4549b23..8ab430653589579b8556edc0fbe7c034a4c0ad8a 100644 (file)
@@ -117,7 +117,7 @@ void FGMouseInput::init()
       m.mode_node->setIntValue(0);
     }
     for (j = 0; j < MAX_MOUSE_BUTTONS; j++) {
-      buf.clear();
+      buf.seekp(ios_base::beg);
       buf << "/devices/status/mice/mouse["<< i << "]/button[" << j << "]";
       m.mouse_button_nodes[j] = fgGetNode(buf.str().c_str(), true);
       m.mouse_button_nodes[j]->setBoolValue(false);
@@ -150,7 +150,7 @@ void FGMouseInput::init()
       m.modes[j].buttons = new FGButton[MAX_MOUSE_BUTTONS];
       std::ostringstream buf;
       for (k = 0; k < MAX_MOUSE_BUTTONS; k++) {
-        buf.clear();
+        buf.seekp(ios_base::beg);
         buf << "mouse button " << k;
         SG_LOG(SG_INPUT, SG_DEBUG, "Initializing mouse button " << k);
         m.modes[j].buttons[k].init( mode_node->getChild("button", k), buf.str(), module );