Skip to content

Commit 8fd902e

Browse files
committed
fix floppy changing ala bug: http://qtemu.org/node/56
1 parent 858d8cd commit 8fd902e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

machineprocess.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -631,8 +631,8 @@ void MachineProcess::changeFloppy()
631631
{
632632
//handle differing version syntax...
633633
//if ((versionMajor >= 0 && versionMinor >= 9 && versionBugfix >= 1)|(kvmVersion>=60))
634-
write("eject -f floppy\n");//might need to be fda , not floppy
635-
write("change floppy " + property("floppy").toByteArray() + '\n');
634+
write("eject -f floppy0\n");//might need to be fda , not floppy
635+
write("change floppy " + property("floppy0").toByteArray() + '\n');
636636
}
637637

638638
void MachineProcess::loadCdrom()

0 commit comments

Comments
 (0)