Pass the current time stamp to viewWillScroll().

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1063 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-02-21 00:20:22 +00:00
parent 5f18acd3d8
commit 2e6c813bd6
2 changed files with 12 additions and 5 deletions
@@ -1,5 +1,5 @@
//
// $Id: SceneViewPanel.java,v 1.34 2002/02/19 19:58:19 mdb Exp $
// $Id: SceneViewPanel.java,v 1.35 2002/02/21 00:20:22 mdb Exp $
package com.threerings.miso.scene;
@@ -130,7 +130,7 @@ public class SceneViewPanel extends AnimatedPanel
/**
* If we're scrolling, we need to pass the word on to our scene view.
*/
protected void viewWillScroll (int dx, int dy)
protected void viewWillScroll (int dx, int dy, long now)
{
_view.viewWillScroll(dx, dy);
}