Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgornekich <n.gorbadey@gmail.com>2022-02-02 18:58:52 +0300
committerGitHub <noreply@github.com>2022-02-02 18:58:52 +0300
commit838df4c9ea67d390e609d7919cbdc1ca0bb26412 (patch)
tree94b2523d641d3d92326ad7fcc11ce656a43599d8 /applications/subghz/subghz.c
parentd2c4f15af5f79756343df95640fad404ee1af6f8 (diff)
[FL-2229] New assets paths (#978)
* assets: change resources paths * apps: rework nfc, irda and subghz with new assets path * subghz: remove unused paths * subghz: fix incorrect path * badusb and u2f fix Co-authored-by: あく <alleteam@gmail.com> Co-authored-by: nminaylov <nm29719@gmail.com>
Diffstat (limited to 'applications/subghz/subghz.c')
-rw-r--r--applications/subghz/subghz.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/applications/subghz/subghz.c b/applications/subghz/subghz.c
index f13c86d6..4f442562 100644
--- a/applications/subghz/subghz.c
+++ b/applications/subghz/subghz.c
@@ -284,10 +284,10 @@ int32_t subghz_app(void* p) {
//Load database
bool load_database =
- subghz_parser_load_keeloq_file(subghz->txrx->parser, "/ext/subghz/keeloq_mfcodes");
- subghz_parser_load_keeloq_file(subghz->txrx->parser, "/ext/subghz/keeloq_mfcodes_user");
- subghz_parser_load_nice_flor_s_file(subghz->txrx->parser, "/ext/subghz/nice_flor_s_rx");
- subghz_parser_load_came_atomo_file(subghz->txrx->parser, "/ext/subghz/came_atomo");
+ subghz_parser_load_keeloq_file(subghz->txrx->parser, "/ext/subghz/assets/keeloq_mfcodes");
+ subghz_parser_load_keeloq_file(subghz->txrx->parser, "/ext/subghz/assets/keeloq_mfcodes_user");
+ subghz_parser_load_nice_flor_s_file(subghz->txrx->parser, "/ext/subghz/assets/nice_flor_s_rx");
+ subghz_parser_load_came_atomo_file(subghz->txrx->parser, "/ext/subghz/assets/came_atomo");
// Check argument and run corresponding scene
if(p && subghz_key_load(subghz, p)) {