Skip to content

Commit

Permalink
fix default conf in android (#18)
Browse files Browse the repository at this point in the history
* fix

* Update version

* Update version
  • Loading branch information
i30817 authored Oct 28, 2023
1 parent 8265e7b commit 2792d5b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libretrofuzz/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.4.5"
__version__ = "3.4.6"
2 changes: 1 addition & 1 deletion libretrofuzz/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
elif sys.platform == "darwin":
CONFIG = Path(Path.home(), "Library", "Application Support", "RetroArch", "config", "retroarch.cfg")
elif hasattr(sys, 'getandroidapilevel'):
CONFIG = Path("storage", "emulated", "0", "Android", "data", "com.retroarch.aarch64", "files", "retroarch.cfg")
CONFIG = Path("/", "storage", "emulated", "0", "Android", "data", "com.retroarch.aarch64", "files", "retroarch.cfg")
else:
# all the rest based on linux.
# If they arent based on linux,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "libretrofuzz"
version = "3.4.5"
version = "3.4.6"
description = "Fuzzy Retroarch thumbnail downloader"
authors = ["i30817 <i30817@gmail.com>"]
license = "MIT"
Expand Down

0 comments on commit 2792d5b

Please sign in to comment.