diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2012-01-29 21:55:26 +0100 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2012-01-29 22:35:49 +0100 |
| commit | 7728ff5912aebe2b21a3c0ca0d8624ec97dabdb6 (patch) | |
| tree | 44840a4584c0107a557891e7b4f77585299a8969 /apps/plugins/stopwatch.lua | |
| parent | 112bc71a0c7d5a981d37eaa5062f8a93d7ccc067 (diff) | |
| download | rockbox-7728ff5912aebe2b21a3c0ca0d8624ec97dabdb6.zip rockbox-7728ff5912aebe2b21a3c0ca0d8624ec97dabdb6.tar.gz rockbox-7728ff5912aebe2b21a3c0ca0d8624ec97dabdb6.tar.bz2 rockbox-7728ff5912aebe2b21a3c0ca0d8624ec97dabdb6.tar.xz | |
Export runtime detected paths to lua scripts. Adapt stopwatch to not use
hardcoded path.
Change-Id: I5b843002d63a332b3fad02973d00b9863d283062
Diffstat (limited to 'apps/plugins/stopwatch.lua')
| -rw-r--r-- | apps/plugins/stopwatch.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/stopwatch.lua b/apps/plugins/stopwatch.lua index c8fac3c..87773e3 100644 --- a/apps/plugins/stopwatch.lua +++ b/apps/plugins/stopwatch.lua @@ -25,7 +25,7 @@ require "actions" require "buttons" -STOPWATCH_FILE = "/.rockbox/rocks/apps/stopwatch.dat" +STOPWATCH_FILE = rb.PLUGIN_APPS_DATA_DIR .. "/stopwatch.dat" local LapsView = { |