diff options
| -rw-r--r-- | libpcsxcore/cdriso.c | 2 | ||||
| -rw-r--r-- | win32/pcsx.sln | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libpcsxcore/cdriso.c b/libpcsxcore/cdriso.c index ebeb0c93..5cb1b7bc 100644 --- a/libpcsxcore/cdriso.c +++ b/libpcsxcore/cdriso.c @@ -825,7 +825,7 @@ static long CALLBACK ISOopen(void) { if(ftell(cdHandle) % 2048 == 0) {
fseek(cdHandle, 0, SEEK_SET);
fread(&modeTest, 4, 1, cdHandle);
- if(modeTest!=0xffffff00) isMode1ISO = TRUE;
+ if(SWAP32(modeTest)!=0xffffff00) isMode1ISO = TRUE;
}
fseek(cdHandle, 0, SEEK_SET);
}
diff --git a/win32/pcsx.sln b/win32/pcsx.sln index 95e64259..6fc21972 100644 --- a/win32/pcsx.sln +++ b/win32/pcsx.sln @@ -1,6 +1,6 @@
Microsoft Visual Studio Solution File, Format Version 10.00
-# Visual Studio 2005
+# Visual Studio 2008
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pcsx", "pcsx.vcproj", "{9EEA62F5-46DC-4C07-AFE1-F72F9D6B9E3E}"
EndProject
Global
|
