Reply 40 of 258, by kjliew
Can you show "C:\WINDOWS> dir /s ddraw*.*" again after DirectX 9.0 installation?
You should cut down and remove unnecessary screenshots attachments. I only need the top that shows "ddraw*, d3d8 and d3d9".
BTW, what's your host system configuration, CPU & GPU?
Can you capture and show QEMU console logs when your start XvT from Win98 VM?
Here's the QEMU run scripts to capture the logs:
#!/bin/bash
GLIDE_DLL=./lib
QEMU=./bin/qemu-system-i386
$QEMU --version
if [ ! -f $GLIDE_DLL/libglide2x.so ]; then
echo "Missing Glide2x library at $GLIDE_DLL"
exit 1
fi
echo "Host Glide DLL at LD_LIBRARY=$GLIDE_DLL"
LD_LIBRARY_PATH=$GLIDE_DLL $QEMU -display sdl $@ 2>&1 | tee qemu.log