From b3ed60d123bb0f806ff77e422d00634c9135fac1 Mon Sep 17 00:00:00 2001 From: Dave Murphy Date: Mon, 20 Feb 2017 06:41:42 +0000 Subject: [PATCH] default to "unsafe" file write. Unable to replicate failure conditions. --- libctru/source/sdmc_dev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libctru/source/sdmc_dev.c b/libctru/source/sdmc_dev.c index 2523f39..9cdf1fc 100644 --- a/libctru/source/sdmc_dev.c +++ b/libctru/source/sdmc_dev.c @@ -66,7 +66,7 @@ sdmc_devoptab = .structSize = sizeof(sdmc_file_t), .open_r = sdmc_open, .close_r = sdmc_close, - .write_r = sdmc_write_safe, + .write_r = sdmc_write, .read_r = sdmc_read, .seek_r = sdmc_seek, .fstat_r = sdmc_fstat,