(VITA) Removed gross hack with optimization workaround
[picodrive.git] / pico / cart.c
index 3bab615..d237fad 100644 (file)
@@ -332,9 +332,7 @@ int pm_seek(pm_file *stream, long offset, int whence)
   if (stream->type == PMT_UNCOMPRESSED)\r
   {\r
     fseek(stream->file, offset, whence);\r
-    int ret = ftell(stream->file);\r
-    elprintf(EL_STATUS, "seeked ok."); //HACK for VITA\r
-    return ret;\r
+    return ftell(stream->file);\r
   }\r
 #ifndef NO_ZLIB\r
   else if (stream->type == PMT_ZIP)\r