diff src/adplug/core/adtrack.cxx @ 1978:fa9f85cebade

s/vfs_/aud_vfs_/g
author William Pitcock <nenolod@atheme.org>
date Sun, 07 Oct 2007 00:25:33 -0500
parents 4709ce4e209e
children
line wrap: on
line diff
--- a/src/adplug/core/adtrack.cxx	Sun Oct 07 00:23:19 2007 -0500
+++ b/src/adplug/core/adtrack.cxx	Sun Oct 07 00:25:33 2007 -0500
@@ -70,12 +70,12 @@
   AdPlug_LogWrite ("CadtrackLoader::load(,\"%s\"): Checking for \"%s\"...\n",
                    filename.c_str (), instfilename.c_str ());
 
-  VFSFile *instfd = vfs_fopen (instfilename.c_str (), "rb");
+  VFSFile *instfd = aud_vfs_fopen (instfilename.c_str (), "rb");
   instf = fp.open (instfd);
   if (!instf || fp.filesize (instf) != 468)
   {
     fp.close (f);
-    vfs_fclose (instfd);
+    aud_vfs_fclose (instfd);
     return false;
   }