Lines 1-20
Link Here
|
1 |
--- src/dos/cdrom_image.cpp.orig Mon Oct 25 22:00:14 2004 |
1 |
--- src/dos/cdrom_image.cpp.orig Tue Oct 5 21:55:03 2004 |
2 |
+++ src/dos/cdrom_image.cpp Mon Oct 25 22:00:52 2004 |
2 |
+++ src/dos/cdrom_image.cpp Tue Nov 23 21:11:08 2004 |
3 |
@@ -23,7 +23,7 @@ |
3 |
@@ -23,7 +23,7 @@ |
4 |
#include <cstdio> |
4 |
#include <cstdio> |
5 |
#include <fstream> |
5 |
#include <fstream> |
6 |
#include <iostream> |
6 |
#include <iostream> |
7 |
-#include <limits> |
7 |
-#include <limits.h> |
8 |
+/* #include <limits> */ |
8 |
+/* #include <limits.h> */ |
9 |
#include <sstream> |
9 |
#include <sstream> |
10 |
#include <vector> |
10 |
#include <vector> |
11 |
#include <sys/stat.h> |
11 |
#include <sys/stat.h> |
12 |
@@ -572,7 +572,7 @@ |
|
|
13 |
if (stat(filename.c_str(), &test) == 0) return true; |
14 |
|
15 |
// check if file with path relative to cue file exists |
16 |
-#if not defined(WIN32) |
17 |
+#if !defined(WIN32) |
18 |
string tmpstr(pathname + "/" + filename); |
19 |
if (stat(tmpstr.c_str(), &test) == 0) { |
20 |
filename = tmpstr; |