mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-02-05 05:30:01 +00:00
- default floppy device under Linux is now /dev/fd?u1440 because /dev/fd?H1440
is deprecated
This commit is contained in:
parent
b7e0269519
commit
5ac532edfd
@ -685,10 +685,10 @@ static void sigint_handler(...)
|
||||
|
||||
#ifdef HAVE_PTHREADS
|
||||
/*
|
||||
* Pthread configuration
|
||||
* Pthread configuration
|
||||
*/
|
||||
void
|
||||
Set_pthread_attr(pthread_attr_t *attr, int priority)
|
||||
|
||||
void Set_pthread_attr(pthread_attr_t *attr, int priority)
|
||||
{
|
||||
pthread_attr_init(attr);
|
||||
#if defined(_POSIX_THREAD_PRIORITY_SCHEDULING)
|
||||
|
@ -120,8 +120,8 @@ void SysMountFirstFloppy(void)
|
||||
void SysAddFloppyPrefs(void)
|
||||
{
|
||||
#if defined(__linux__)
|
||||
PrefsAddString("floppy", "/dev/fd0H1440");
|
||||
PrefsAddString("floppy", "/dev/fd1H1440");
|
||||
PrefsAddString("floppy", "/dev/fd0u1440");
|
||||
PrefsAddString("floppy", "/dev/fd1u1440");
|
||||
#elif defined(__NetBSD__)
|
||||
PrefsAddString("floppy", "/dev/fd0a");
|
||||
PrefsAddString("floppy", "/dev/fd1a");
|
||||
|
Loading…
x
Reference in New Issue
Block a user