mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-18 10:21:42 +00:00
30 lines
1.2 KiB
C
30 lines
1.2 KiB
C
|
/* _______ ____ __ ___ ___
|
||
|
* \ _ \ \ / \ / \ \ / / ' ' '
|
||
|
* | | \ \ | | || | \/ | . .
|
||
|
* | | | | | | || ||\ /| |
|
||
|
* | | | | | | || || \/ | | ' ' '
|
||
|
* | | | | | | || || | | . .
|
||
|
* | |_/ / \ \__// || | |
|
||
|
* /_______/ynamic \____/niversal /__\ /____\usic /| . . ibliotheque
|
||
|
* / \
|
||
|
* / . \
|
||
|
* loadxm2.c - Function to read a Fast Tracker II / / \ \
|
||
|
* file, opening and closing it for | < / \_
|
||
|
* you, and do an initial run-through. | \/ /\ /
|
||
|
* \_ / > /
|
||
|
* Split off from loadxm.c by entheh. | \ / /
|
||
|
* | ' /
|
||
|
* \__/
|
||
|
*/
|
||
|
|
||
|
#include "dumb.h"
|
||
|
|
||
|
|
||
|
|
||
|
DUH *DUMBEXPORT dumb_load_xm(const char *filename)
|
||
|
{
|
||
|
DUH *duh = dumb_load_xm_quick(filename);
|
||
|
dumb_it_do_initial_runthrough(duh);
|
||
|
return duh;
|
||
|
}
|