mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-12-16 23:51:04 +00:00
30 lines
1.3 KiB
C
30 lines
1.3 KiB
C
|
/* _______ ____ __ ___ ___
|
||
|
* \ _ \ \ / \ / \ \ / / ' ' '
|
||
|
* | | \ \ | | || | \/ | . .
|
||
|
* | | | | | | || ||\ /| |
|
||
|
* | | | | | | || || \/ | | ' ' '
|
||
|
* | | | | | | || || | | . .
|
||
|
* | |_/ / \ \__// || | |
|
||
|
* /_______/ynamic \____/niversal /__\ /____\usic /| . . ibliotheque
|
||
|
* / \
|
||
|
* / . \
|
||
|
* loadmod2.c - Function to read a good old- / / \ \
|
||
|
* fashioned Amiga module file, | < / \_
|
||
|
* opening and closing it for you, | \/ /\ /
|
||
|
* and do an initial run-through. \_ / > /
|
||
|
* | \ / /
|
||
|
* Split off from loadmod.c by entheh. | ' /
|
||
|
* \__/
|
||
|
*/
|
||
|
|
||
|
#include "dumb.h"
|
||
|
|
||
|
|
||
|
|
||
|
DUH *DUMBEXPORT dumb_load_mod(const char *filename, int restrict)
|
||
|
{
|
||
|
DUH *duh = dumb_load_mod_quick(filename, restrict);
|
||
|
dumb_it_do_initial_runthrough(duh);
|
||
|
return duh;
|
||
|
}
|