use qemu-system-x86_64w.exe instead of qemu-system-x86_64.exe
from https://github.com/qemu/qemu/blob/master/docs/devel/build-system.txt
A further complication for the system emulator binaries is that two separate binaries need to be generated.
The main binary (e.g. qemu-system-x86_64.exe) is linked against the Windows console runtime subsystem. These are expected to be run from a command prompt window, and so will print stderr to the console that launched them.
The second binary generated has a 'w' on the end of its name (e.g. qemu-system-x86_64w.exe) and is linked against the Windows graphical runtime subsystem. These are expected to be run directly from the desktop and will open up a dedicated console window for stderr output.
therefore when launching graphical guests, the screen is black. qtemu should call the 64w binary instead of 64.exe