about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2023-03-06 14:18:30 +0100
committerptitSeb <sebastien.chev@gmail.com>2023-03-06 14:18:30 +0100
commitc71a840e7457c1f1022fa9fde1163a00ae25b32c (patch)
treedd971a04e504ddf4ff18af0e15232f742e22fce3 /src
parent2b5c25ef17718bb0e324ea2febd5b76b829c309b (diff)
downloadbox64-c71a840e7457c1f1022fa9fde1163a00ae25b32c.tar.gz
box64-c71a840e7457c1f1022fa9fde1163a00ae25b32c.zip
[DYNAREC] Put box64 dynarec and cpu info on the same line
Diffstat (limited to 'src')
-rwxr-xr-xsrc/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 21c8ed6a..8119af20 100755
--- a/src/main.c
+++ b/src/main.c
@@ -348,10 +348,10 @@ HWCAP2_ECV
         printf_log(LOG_INFO, " PMULL");
     if(arm64_atomics)
         printf_log(LOG_INFO, " ATOMICS");
-    printf_log(LOG_INFO, " PageSize:%zd\n", box64_pagesize);
+    printf_log(LOG_INFO, " PageSize:%zd ", box64_pagesize);
 #elif defined(LA464)
     printf_log(LOG_INFO, "Dynarec for LoongArch");
-    printf_log(LOG_INFO, " PageSize:%zd\n", box64_pagesize);
+    printf_log(LOG_INFO, " PageSize:%zd ", box64_pagesize);
 #else
 #error Unsupported architecture
 #endif