From 5300d185af7a6658817858519d1f5f966109f5c5 Mon Sep 17 00:00:00 2001 From: Nukem Date: Sun, 4 Oct 2015 02:03:08 -0400 Subject: [PATCH] Add another likely offset for ISO magic Tested with Skyrim's DISC1 ISO. It doesn't load otherwise. (Submitting this through github's web editor) --- src/xenia/vfs/devices/disc_image_device.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/vfs/devices/disc_image_device.cc b/src/xenia/vfs/devices/disc_image_device.cc index 6e7138292..1f5663c58 100644 --- a/src/xenia/vfs/devices/disc_image_device.cc +++ b/src/xenia/vfs/devices/disc_image_device.cc @@ -52,7 +52,7 @@ bool DiscImageDevice::Initialize() { DiscImageDevice::Error DiscImageDevice::Verify(ParseState* state) { // Find sector 32 of the game partition - try at a few points. static const size_t likely_offsets[] = { - 0x00000000, 0x0000FB20, 0x00020600, 0x0FD90000, + 0x00000000, 0x0000FB20, 0x00020600, 0x02080000, 0x0FD90000, }; bool magic_found = false; for (size_t n = 0; n < xe::countof(likely_offsets); n++) {