From: Toni Wilen Date: Sat, 10 Jan 2026 09:46:55 +0000 (+0200) Subject: Include HDF size in bytes in log X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=7a554bea17babc0fc63017879ecfbd988f450e25;p=francis%2Fwinuae.git Include HDF size in bytes in log --- diff --git a/od-win32/hardfile_win32.cpp b/od-win32/hardfile_win32.cpp index ec3936db..323a4531 100644 --- a/od-win32/hardfile_win32.cpp +++ b/od-win32/hardfile_win32.cpp @@ -2292,8 +2292,8 @@ emptyreal: } } if (hfd->handle_valid || hfd->drive_empty) { - hfd_log (_T("HDF '%s' %p opened, size=%dK mode=%d empty=%d\n"), - name, hfd, (int)(hfd->physsize / 1024), hfd->handle_valid, hfd->drive_empty); + hfd_log (_T("HDF '%s' %p opened, size=%dK (0x%llx) mode=%d empty=%d\n"), + name, hfd, (int)(hfd->physsize / 1024), hfd->physsize, hfd->handle_valid, hfd->drive_empty); return 1; } end: