about summary refs log tree commit diff stats
path: root/src/tools
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2023-02-20 21:30:22 +0100
committerptitSeb <sebastien.chev@gmail.com>2023-02-20 21:30:22 +0100
commitbfef8c9bbe8a16373742cb9c9e5691b93e994f58 (patch)
tree246b21e67025f3159006efd04f78fc6e4ec696bf /src/tools
parent42b83789880c300711f08e3852784e17cafaf7ac (diff)
parent3fe2843bb3b95d8edd63d21c4f6acad7f652be91 (diff)
downloadbox64-bfef8c9bbe8a16373742cb9c9e5691b93e994f58.tar.gz
box64-bfef8c9bbe8a16373742cb9c9e5691b93e994f58.zip
Merge branch 'main' into steam_chrome
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/rcfile.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/tools/rcfile.c b/src/tools/rcfile.c
index 75df7137..04451175 100644
--- a/src/tools/rcfile.c
+++ b/src/tools/rcfile.c
@@ -113,7 +113,8 @@ ENTRYINT(BOX64_DYNAREC_SAFEFLAGS, box64_dynarec_safeflags, 0, 2, 2) \
 ENTRYBOOL(BOX64_DYNAREC_CALLRET, box64_dynarec_callret)             \
 ENTRYBOOL(BOX64_DYNAREC_BLEEDING_EDGE, box64_dynarec_bleeding_edge) \
 ENTRYINT(BOX64_DYNAREC_HOTPAGE, box64_dynarec_hotpage, 0, 255, 8)   \
-ENTRYBOOL(box64_dynarec_wait, box64_dynarec_wait)                   \
+ENTRYBOOL(BOX64_DYNAREC_FASTPAGE, box64_dynarec_fastpage)           \
+ENTRYBOOL(BOX64_DYNAREC_WAIT, box64_dynarec_wait)                   \
 ENTRYSTRING_(BOX64_NODYNAREC, box64_nodynarec)                      \
 
 #else
@@ -130,7 +131,8 @@ IGNORE(BOX64_DYNAREC_SAFEFLAGS)                                     \
 IGNORE(BOX64_DYNAREC_CALLRET)                                       \
 IGNORE(BOX64_DYNAREC_BLEEDING_EDGE)                                 \
 IGNORE(BOX64_DYNAREC_HOTPAGE)                                       \
-IGNORE(BOX64_DYNAREC_wait)                                          \
+IGNORE(BOX64_DYNAREC_FASTPAGE)                                      \
+IGNORE(BOX64_DYNAREC_WAIT)                                          \
 IGNORE(BOX64_NODYNAREC)                                             \
 
 #endif
@@ -355,7 +357,7 @@ void LoadRCFile(const char* filename)
             if(0) ;
             SUPER()
             else if(len && current_name) {
-                printf_log(LOG_INFO, "Warning, unsupported %s=%s for [%s] in %s", key, val, current_name, filename);
+                printf_log(LOG_INFO, "Warning, unsupported %s=%s for [%s] in %s\n", key, val, current_name, filename);
             }
             #undef ENTRYBOOL
             #undef CENTRYBOOL