merge
This commit is contained in:
commit
b932aaeafc
4 changed files with 1362 additions and 2 deletions
|
@ -1668,6 +1668,7 @@ What use is magic if it can't save a unicorn? -Peter S. Beagle
|
|||
What's in a name? That which we call a rose/By any other name would smell as sweet.
|
||||
What's it all about? We're all tools. Life's just a crock.
|
||||
What's the point to combing your hair when it's grey and thinning?
|
||||
What's wrong with plan9? (...) I see there is a problem almost in every piece of plan9 code. - 9fans
|
||||
When all else fails, read the instructions.
|
||||
When all is said and done, a lot more is said than done.
|
||||
When an Okie moves to California, he raises the IQ of both states. -Will Rogers
|
||||
|
|
1356
sys/src/9/pc/audiohda.c
Normal file
1356
sys/src/9/pc/audiohda.c
Normal file
File diff suppressed because it is too large
Load diff
|
@ -75,6 +75,7 @@ link
|
|||
|
||||
audiosb16 dma
|
||||
audioac97 audioac97mix
|
||||
audiohda
|
||||
|
||||
misc
|
||||
archmp mp apic
|
||||
|
|
|
@ -140,12 +140,14 @@ char* I_IdentifyWAD(char *wadname)
|
|||
{
|
||||
char path[1024];
|
||||
|
||||
/* /sys/lib/doom/... */
|
||||
snprintf(path, sizeof path, "/sys/lib/doom/%s", wadname);
|
||||
if (I_FileExists (path))
|
||||
return path;
|
||||
|
||||
/* $home/lib/doom/... */
|
||||
snprintf(path, sizeof path, "/sys/games/lib/doom/%s", wadname);
|
||||
if (I_FileExists (path))
|
||||
return path;
|
||||
|
||||
snprintf(path, sizeof path, "%s/lib/doom/%s", getenv("home"), wadname);
|
||||
if (I_FileExists (path))
|
||||
return path;
|
||||
|
|
Loading…
Reference in a new issue