1 /*  _______         ____    __         ___    ___
2  * \    _  \       \    /  \  /       \   \  /   /       '   '  '
3  *  |  | \  \       |  |    ||         |   \/   |         .      .
4  *  |  |  |  |      |  |    ||         ||\  /|  |
5  *  |  |  |  |      |  |    ||         || \/ |  |         '  '  '
6  *  |  |  |  |      |  |    ||         ||    |  |         .      .
7  *  |  |_/  /        \  \__//          ||    |  |
8  * /_______/ynamic    \____/niversal  /__\  /____\usic   /|  .  . ibliotheque
9  *                                                      /  \
10  *                                                     / .  \
11  * loadxm2.c - Function to read a Fast Tracker II     / / \  \
12  *             file, opening and closing it for      | <  /   \_
13  *             you, and do an initial run-through.   |  \/ /\   /
14  *                                                    \_  /  > /
15  * Split off from loadxm.c by entheh.                   | \ / /
16  *                                                      |  ' /
17  *                                                       \__/
18  */
19 
20 #include "dumb.h"
21 
22 
23 
dumb_load_xm(const char * filename)24 DUH *dumb_load_xm(const char *filename)
25 {
26 	DUH *duh = dumb_load_xm_quick(filename);
27 	dumb_it_do_initial_runthrough(duh);
28 	return duh;
29 }
30