diff options
| author | 2014-11-09 16:56:57 -0500 | |
|---|---|---|
| committer | 2014-11-11 19:54:09 -0500 | |
| commit | ce1125d49099d0f42ccca53ba89fe3263912ae56 (patch) | |
| tree | 8e70e6027b50fa72906088316e054c52135f7e21 | |
| parent | Citra-Qt: Use Core::RunLoop when not single stepping. (diff) | |
| download | yuzu-ce1125d49099d0f42ccca53ba89fe3263912ae56.tar.gz yuzu-ce1125d49099d0f42ccca53ba89fe3263912ae56.tar.xz yuzu-ce1125d49099d0f42ccca53ba89fe3263912ae56.zip | |
Core: Changed RunLoop iterations to 1000 (slightly better performance).
| -rw-r--r-- | src/core/core.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/core.h b/src/core/core.h index 872dc0cd1..850bb0ab4 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -26,13 +26,13 @@ void Start(); | |||
| 26 | 26 | ||
| 27 | /** | 27 | /** |
| 28 | * Run the core CPU loop | 28 | * Run the core CPU loop |
| 29 | * This function loops for 100 instructions in the CPU before trying to update hardware. This is a | 29 | * This function runs the core for the specified number of CPU instructions before trying to update |
| 30 | * little bit faster than SingleStep, and should be pretty much equivalent. The number of | 30 | * hardware. This is much faster than SingleStep (and should be equivalent), as the CPU is not |
| 31 | * instructions chosen is fairly arbitrary, however a large number will more drastically affect the | 31 | * required to do a full dispatch with each instruction. NOTE: the number of instructions requested |
| 32 | * frequency of GSP interrupts and likely break things. The point of this is to just loop in the CPU | 32 | * is not guaranteed to run, as this will be interrupted preemptively if a hardware update is |
| 33 | * for more than 1 instruction to reduce overhead and make it a little bit faster... | 33 | * requested (e.g. on a thread switch). |
| 34 | */ | 34 | */ |
| 35 | void RunLoop(int tight_loop=100); | 35 | void RunLoop(int tight_loop=1000); |
| 36 | 36 | ||
| 37 | /// Step the CPU one instruction | 37 | /// Step the CPU one instruction |
| 38 | void SingleStep(); | 38 | void SingleStep(); |