From 015fc54cef1f6a3a385e46b15d7cee205d892cd6 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Thu, 16 Nov 2023 17:53:48 +0000 Subject: [PATCH] Fixed bug with wallet path under cake wallet - 2 --- src/wallet/plain_wallet_api.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wallet/plain_wallet_api.cpp b/src/wallet/plain_wallet_api.cpp index 1d19c298..c3537bc8 100644 --- a/src/wallet/plain_wallet_api.cpp +++ b/src/wallet/plain_wallet_api.cpp @@ -106,9 +106,9 @@ namespace plain_wallet std::string get_app_config_folder() { -#ifndef CAKEWALLET +#ifdef CAKEWALLET return ""; -#ifdef WIN32 +#elif WIN32 std::string path = get_bundle_working_dir() + "/" + APP_CONFIG_FOLDER + "/"; #else std::string path = get_bundle_working_dir() + "/" + APP_CONFIG_FOLDER + "/";