From 2ca9f413aba7e98e5ce4473870a849852317ce48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20M=C3=BCller?= Date: Mon, 27 Mar 2023 17:01:07 +0200 Subject: [PATCH] Makefile: Quench qemu warning about image format qemu deems format autodetection to be dangerous on raw images, so make sure we specify exactly what we want to do. This will quench a scary-looking warning right when launching PonyDOS. There's no functional change otherwise. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ffa6dfb..b166c41 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ memory.bin: ponydos.inc $(PYTHON) process_wallpaper.py $@ $< 7 0 0 0 run: ponydos.img - qemu-system-i386 -fda $< + qemu-system-i386 -drive file=$<,index=0,if=floppy,format=raw clean: rm -f *.bin *.img *.wall ponydos.inc