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

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKirk Klobe <kklobe@gmail.com>2022-11-06 17:24:15 +0300
committerkcgen <1557255+kcgen@users.noreply.github.com>2022-11-12 03:40:04 +0300
commit178c703d36c2c3507bc43057f61a9bb638a863d4 (patch)
tree1c66233ee58efffc2ac634936e22e44e4b617c50 /src
parent1a38d06252ad593fc14dc97e1e966b5fb50bd253 (diff)
Update Tracy to v0.9
Diffstat (limited to 'src')
-rw-r--r--src/cpu/core_dyn_x86.cpp2
-rw-r--r--src/cpu/core_dynrec.cpp2
-rw-r--r--src/cpu/core_full.cpp2
-rw-r--r--src/cpu/core_normal.cpp2
-rw-r--r--src/cpu/core_simple.cpp2
-rw-r--r--src/dosbox.cpp2
-rw-r--r--src/gui/sdlmain.cpp2
-rw-r--r--src/hardware/mixer.cpp2
8 files changed, 8 insertions, 8 deletions
diff --git a/src/cpu/core_dyn_x86.cpp b/src/cpu/core_dyn_x86.cpp
index 196889931..a2e4037ae 100644
--- a/src/cpu/core_dyn_x86.cpp
+++ b/src/cpu/core_dyn_x86.cpp
@@ -249,7 +249,7 @@ static void dyn_restoreregister(DynReg * src_reg, DynReg * dst_reg) {
#include "core_dyn_x86/decoder.h"
Bits CPU_Core_Dyn_X86_Run(void) {
- ZoneScoped
+ ZoneScoped;
// helper class to auto-save DH_FPU state on function exit
class auto_dh_fpu {
public:
diff --git a/src/cpu/core_dynrec.cpp b/src/cpu/core_dynrec.cpp
index 619a4a972..5841c327b 100644
--- a/src/cpu/core_dynrec.cpp
+++ b/src/cpu/core_dynrec.cpp
@@ -209,7 +209,7 @@ CacheBlock *LinkBlocks(BlockReturn ret)
*/
Bits CPU_Core_Dynrec_Run(void) {
- ZoneScoped
+ ZoneScoped;
for (;;) {
// Determine the linear address of CS:EIP
PhysPt ip_point=SegPhys(cs)+reg_eip;
diff --git a/src/cpu/core_full.cpp b/src/cpu/core_full.cpp
index 50f8b7ef6..0a5d4dd6d 100644
--- a/src/cpu/core_full.cpp
+++ b/src/cpu/core_full.cpp
@@ -62,7 +62,7 @@ typedef PhysPt EAPoint;
}
Bits CPU_Core_Full_Run(void) {
- ZoneScoped
+ ZoneScoped;
FullData inst{};
while (CPU_Cycles-->0) {
#if C_DEBUG
diff --git a/src/cpu/core_normal.cpp b/src/cpu/core_normal.cpp
index 8be88897c..1a3941c75 100644
--- a/src/cpu/core_normal.cpp
+++ b/src/cpu/core_normal.cpp
@@ -138,7 +138,7 @@ static inline uint32_t Fetchd() {
#define EALookupTable (core.ea_table)
Bits CPU_Core_Normal_Run(void) {
- ZoneScoped
+ ZoneScoped;
while (CPU_Cycles-->0) {
LOADIP;
core.opcode_index=cpu.code.big*0x200;
diff --git a/src/cpu/core_simple.cpp b/src/cpu/core_simple.cpp
index 101faa216..c4f6abc39 100644
--- a/src/cpu/core_simple.cpp
+++ b/src/cpu/core_simple.cpp
@@ -134,7 +134,7 @@ static inline uint32_t Fetchd() {
#define EALookupTable (core.ea_table)
Bits CPU_Core_Simple_Run(void) {
- ZoneScoped
+ ZoneScoped;
while (CPU_Cycles-->0) {
LOADIP;
core.opcode_index=cpu.code.big*0x200;
diff --git a/src/dosbox.cpp b/src/dosbox.cpp
index 07f998985..f60bdbb19 100644
--- a/src/dosbox.cpp
+++ b/src/dosbox.cpp
@@ -167,7 +167,7 @@ static Bitu Normal_Loop() {
}
void increaseticks() { //Make it return ticksRemain and set it in the function above to remove the global variable.
- ZoneScoped
+ ZoneScoped;
if (GCC_UNLIKELY(ticksLocked)) { // For Fast Forward Mode
ticksRemain=5;
/* Reset any auto cycle guessing for this frame */
diff --git a/src/gui/sdlmain.cpp b/src/gui/sdlmain.cpp
index 3df1100a6..e45aab89c 100644
--- a/src/gui/sdlmain.cpp
+++ b/src/gui/sdlmain.cpp
@@ -2426,7 +2426,7 @@ void GFX_EndUpdate(const uint16_t *changedLines)
break;
}
sdl.updating = false;
- FrameMark
+ FrameMark;
}
// Texture update and presentation
diff --git a/src/hardware/mixer.cpp b/src/hardware/mixer.cpp
index 8d6b34af1..53aa82b0d 100644
--- a/src/hardware/mixer.cpp
+++ b/src/hardware/mixer.cpp
@@ -1957,7 +1957,7 @@ static void MIXER_Mix_NoSound()
static void SDLCALL MIXER_CallBack([[maybe_unused]] void *userdata,
Uint8 *stream, int len)
{
- ZoneScoped
+ ZoneScoped;
memset(stream, 0, len);
auto frames_requested = len / mixer_frame_size;