summaryrefslogtreecommitdiffstats
path: root/src/core/core.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2023-06-13 18:45:09 +0200
committerGitHub <noreply@github.com>2023-06-13 18:45:09 +0200
commit14d25e2c75454fbdcfa3408257d3b9092e284973 (patch)
treeea205f4376325f5c31b62072bd57bf8ce27c1a28 /src/core/core.h
parentMerge pull request #10746 from bunnei/update-android-settings (diff)
parentcore: decouple ARM interface from Dynarmic (diff)
downloadyuzu-14d25e2c75454fbdcfa3408257d3b9092e284973.tar
yuzu-14d25e2c75454fbdcfa3408257d3b9092e284973.tar.gz
yuzu-14d25e2c75454fbdcfa3408257d3b9092e284973.tar.bz2
yuzu-14d25e2c75454fbdcfa3408257d3b9092e284973.tar.lz
yuzu-14d25e2c75454fbdcfa3408257d3b9092e284973.tar.xz
yuzu-14d25e2c75454fbdcfa3408257d3b9092e284973.tar.zst
yuzu-14d25e2c75454fbdcfa3408257d3b9092e284973.zip
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/core.h b/src/core/core.h
index ff2e4bd30..93afc9303 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -412,11 +412,11 @@ public:
/// Register a host thread as an auxiliary thread.
void RegisterHostThread();
- /// Enter Dynarmic Microprofile
- void EnterDynarmicProfile();
+ /// Enter CPU Microprofile
+ void EnterCPUProfile();
- /// Exit Dynarmic Microprofile
- void ExitDynarmicProfile();
+ /// Exit CPU Microprofile
+ void ExitCPUProfile();
/// Tells if system is running on multicore.
[[nodiscard]] bool IsMulticore() const;