diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-03-06 14:18:30 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-03-06 14:18:30 +0100 |
| commit | c71a840e7457c1f1022fa9fde1163a00ae25b32c (patch) | |
| tree | dd971a04e504ddf4ff18af0e15232f742e22fce3 /src | |
| parent | 2b5c25ef17718bb0e324ea2febd5b76b829c309b (diff) | |
| download | box64-c71a840e7457c1f1022fa9fde1163a00ae25b32c.tar.gz box64-c71a840e7457c1f1022fa9fde1163a00ae25b32c.zip | |
[DYNAREC] Put box64 dynarec and cpu info on the same line
Diffstat (limited to 'src')
| -rwxr-xr-x | src/main.c | 4 |
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 |