浏览代码

Compile fix.

DjWarmonger 14 年之前
父节点
当前提交
de0d6b8c17
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      client/CVideoHandler.cpp

+ 2 - 2
client/CVideoHandler.cpp

@@ -423,12 +423,12 @@ bool CVideoPlayer::open(std::string name)
 
 	//extract video from video.vid so we can play it
 	bool opened = false;
-	vidh->extract(name, name);
+	vidh.extract(name, name);
 	if (boost::filesystem::exists(name))
 		opened = current->open(name);
 	else // couldn't load video then load from ab resource file
 	{
-		vidh_ab->extract(name, name);
+		vidh.extract(name, name);
 		if (boost::filesystem::exists(name))
 			opened = current->open(name);
 	}