Skip to content

Commit a337611

Browse files
committed
Skip some IOP drivers
1 parent aebb941 commit a337611

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

frontend/drivers/platform_ps2.c

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,10 @@ bool getMountInfo(char *path, char *mountString, char *mountPoint, char *newCWD)
151151
static void init_drivers(bool extra_drivers)
152152
{
153153
init_fileXio_driver();
154-
init_memcard_driver(true);
154+
// init_memcard_driver(true);
155155
init_usb_driver(true);
156-
init_mx4sio_driver(true);
157-
init_cdfs_driver();
156+
// init_mx4sio_driver(true);
157+
// init_cdfs_driver();
158158
bool only_if_booted_from_hdd = true;
159159
#if defined(DEBUG) && !defined(BUILD_FOR_PCSX2)
160160
only_if_booted_from_hdd = false;
@@ -232,17 +232,18 @@ static void deinit_drivers(bool deinit_filesystem, bool deinit_powerOff)
232232
{
233233
#ifndef IS_SALAMANDER
234234
deinit_audio_driver();
235-
deinit_joystick_driver(false);
235+
deinit_joystick_driver(true);
236236
#endif
237237

238238
if (deinit_filesystem)
239239
{
240240
umount_hdd_partition(mountString);
241241

242242
deinit_hdd_driver(!deinit_powerOff);
243-
deinit_mx4sio_driver(true);
243+
// deinit_cdfs_driver();
244+
// deinit_mx4sio_driver(true);
244245
deinit_usb_driver(true);
245-
deinit_memcard_driver(true);
246+
// deinit_memcard_driver(true);
246247
deinit_fileXio_driver();
247248

248249
hddMountStatus = HDD_MOUNT_INIT_STATUS_NOT_READY;

0 commit comments

Comments
 (0)