summaryrefslogtreecommitdiff
path: root/src/android
diff options
context:
space:
mode:
authorGravatar bunnei2023-05-31 15:59:49 -0700
committerGravatar bunnei2023-06-03 00:06:06 -0700
commitb325ad16bcfda041190f80f0b904119a517f2eb4 (patch)
treea87d1b16785b9d6064590b68e7c5b1ba6ac0a473 /src/android
parentRemove `?.` (diff)
downloadyuzu-b325ad16bcfda041190f80f0b904119a517f2eb4.tar.gz
yuzu-b325ad16bcfda041190f80f0b904119a517f2eb4.tar.xz
yuzu-b325ad16bcfda041190f80f0b904119a517f2eb4.zip
Update src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/ImportExportSavesFragment.kt
Diffstat (limited to 'src/android')
-rw-r--r--src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/ImportExportSavesFragment.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/ImportExportSavesFragment.kt b/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/ImportExportSavesFragment.kt
index cf37838f9..2d21e20d8 100644
--- a/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/ImportExportSavesFragment.kt
+++ b/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/ImportExportSavesFragment.kt
@@ -95,7 +95,7 @@ class ImportExportSavesFragment : DialogFragment() {
95 tempFolder.mkdirs() 95 tempFolder.mkdirs()
96 val saveFolder = File(savesFolderRoot) 96 val saveFolder = File(savesFolderRoot)
97 val outputZipFile = File( 97 val outputZipFile = File(
98 tempFolder, "Yuzu saves - ${LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm"))}.zip" 98 tempFolder, "yuzu saves - ${LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm"))}.zip"
99 ) 99 )
100 outputZipFile.createNewFile() 100 outputZipFile.createNewFile()
101 ZipOutputStream(BufferedOutputStream(FileOutputStream(outputZipFile))).use { zos -> 101 ZipOutputStream(BufferedOutputStream(FileOutputStream(outputZipFile))).use { zos ->