Browse Source

fix fps bug

David Rose 14 years ago
parent
commit
f9a3770230
1 changed files with 1 additions and 2 deletions
  1. 1 2
      panda/src/movies/inkblotVideo.cxx

+ 1 - 2
panda/src/movies/inkblotVideo.cxx

@@ -24,10 +24,9 @@ TypeHandle InkblotVideo::_type_handle;
 ////////////////////////////////////////////////////////////////////
 ////////////////////////////////////////////////////////////////////
 InkblotVideo::
 InkblotVideo::
 InkblotVideo(int x, int y, int fps) :
 InkblotVideo(int x, int y, int fps) :
-  MovieVideo("inkblot"),
   _specified_x(x),
   _specified_x(x),
   _specified_y(y),
   _specified_y(y),
-  _specified_fps(y)
+  _specified_fps(fps)
 {
 {
 }
 }