about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2025-04-27 11:06:40 +0200
committerptitSeb <sebastien.chev@gmail.com>2025-04-27 11:06:40 +0200
commit9c962f8b2c60638a3bfcbee4ee8e5a33b090374e (patch)
treeb88259921eb3126c7825291c6c4e64cec717804d /src/include
parent1f7394460382b141668dc5e190914e1fcca5ec66 (diff)
downloadbox64-9c962f8b2c60638a3bfcbee4ee8e5a33b090374e.tar.gz
box64-9c962f8b2c60638a3bfcbee4ee8e5a33b090374e.zip
[RCFILE] Fixed BOX64_ROLLING_LOG not being a boolean but an integer value
Diffstat (limited to 'src/include')
-rw-r--r--src/include/env.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/env.h b/src/include/env.h
index f00bc196..991840aa 100644
--- a/src/include/env.h
+++ b/src/include/env.h
@@ -97,7 +97,7 @@ extern char* ftrace_name;
     STRING(BOX64_RCFILE, envfile)                                       \
     BOOLEAN(BOX64_RDTSC_1GHZ, rdtsc_1ghz, 0)                            \
     BOOLEAN(BOX64_RESERVE_HIGH, reserve_high, 0)                        \
-    BOOLEAN(BOX64_ROLLING_LOG, cycle_log, 0)                            \
+    INTEGER(BOX64_ROLLING_LOG, cycle_log, 0, 0, 2048)                   \
     BOOLEAN(BOX64_SDL2_JGUID, sdl2_jguid, 0)                            \
     BOOLEAN(BOX64_SHAEXT, shaext, 1)                                    \
     BOOLEAN(BOX64_SHOWBT, showbt, 0)                                    \