Browse Source
[frontend_common] Fix unnecessary includes for non android
Signed-off-by: Aleksandr Popovich <popovich@eden-emu.dev>
pull/38/head
Aleksandr Popovich
8 months ago
No known key found for this signature in database
GPG Key ID: B2008BBDA7954884
1 changed files with
6 additions and
3 deletions
-
src/frontend_common/firmware_manager.cpp
|
|
@ -3,9 +3,6 @@ |
|
|
|
|
|
|
|
|
#include "firmware_manager.h"
|
|
|
#include "firmware_manager.h"
|
|
|
#include <filesystem>
|
|
|
#include <filesystem>
|
|
|
#include <jni.h>
|
|
|
|
|
|
#include <common/android/id_cache.h>
|
|
|
|
|
|
#include <common/android/android_common.h>
|
|
|
|
|
|
#include <common/fs/fs_paths.h>
|
|
|
#include <common/fs/fs_paths.h>
|
|
|
|
|
|
|
|
|
#include "common/fs/fs.h"
|
|
|
#include "common/fs/fs.h"
|
|
|
@ -16,6 +13,12 @@ |
|
|
#include "core/crypto/key_manager.h"
|
|
|
#include "core/crypto/key_manager.h"
|
|
|
#include "frontend_common/content_manager.h"
|
|
|
#include "frontend_common/content_manager.h"
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef ANDROID
|
|
|
|
|
|
#include <jni.h>
|
|
|
|
|
|
#include <common/android/id_cache.h>
|
|
|
|
|
|
#include <common/android/android_common.h>
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
FirmwareManager::KeyInstallResult |
|
|
FirmwareManager::KeyInstallResult |
|
|
FirmwareManager::InstallKeys(std::string location, std::string extension) { |
|
|
FirmwareManager::InstallKeys(std::string location, std::string extension) { |
|
|
LOG_INFO(Frontend, "Installing key files from {}", location); |
|
|
LOG_INFO(Frontend, "Installing key files from {}", location); |
|
|
|