]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
autoconf fixes
authorFrode Solheim <frode@fs-uae.net>
Tue, 15 Jul 2025 18:48:40 +0000 (20:48 +0200)
committerFrode Solheim <frode@fs-uae.net>
Tue, 15 Jul 2025 18:48:40 +0000 (20:48 +0200)
autoconf.cpp

index a80ab29481a8f27dc33161930b30073d2d89dc92..815d178a768c4383a3b282a3090227fce2946f4f 100644 (file)
@@ -529,7 +529,7 @@ uae_u32 boot_rom_copy(TrapContext *ctx, uaecptr rombase, int mode)
        } else {
                rtarea_write_enabled = false;
                protect_roms(true);
-               write_log(_T("ROMBASE changed.\n"), absolute_rom_address);
+               write_log(_T("ROMBASE changed (%d).\n"), absolute_rom_address);
                reloc = 1;
        }
        return reloc;
@@ -586,7 +586,7 @@ static uae_u32 REGPARAM2 getchipmemsize (TrapContext *ctx)
 static uae_u32 REGPARAM2 uae_puts (TrapContext *ctx)
 {
        uae_char buf[MAX_DPATH];
-       trap_get_string(ctx, buf, trap_get_areg(ctx, 0), sizeof uae_char);
+       trap_get_string(ctx, buf, trap_get_areg(ctx, 0), sizeof(uae_char));
        TCHAR *s = au(buf);
        write_log(_T("%s"), s);
        xfree(s);