blob: 5653532c094935b943114d0d518eb797e71878ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- a/src/paths.rs
+++ b/src/paths.rs
@@ -26,13 +26,13 @@
/// Name of the directory containing ARMv6 dynamic libraries bundled with
/// touchHLE.
-pub const DYLIBS_DIR: &str = "touchHLE_dylibs";
+pub const DYLIBS_DIR: &str = "/usr/share/touchhle/dylibs";
/// Name of the directory containing fonts bundled with touchHLE.
-pub const FONTS_DIR: &str = "touchHLE_fonts";
+pub const FONTS_DIR: &str = "/usr/share/touchhle/fonts";
/// Name of the file containing touchHLE's default options for various apps.
-pub const DEFAULT_OPTIONS_FILE: &str = "touchHLE_default_options.txt";
+pub const DEFAULT_OPTIONS_FILE: &str = "/etc/touchhle/options.txt";
/// Abstraction over a platform-specific type for accessing a resource bundled
/// with touchHLE.
|