summaryrefslogtreecommitdiff
path: root/plugins/dumb/dumb-kode54/src/it/readxm2.c
blob: c79f753fdfd065a5c3605d6149e824cd27f15f48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*  _______         ____    __         ___    ___
 * \    _  \       \    /  \  /       \   \  /   /       '   '  '
 *  |  | \  \       |  |    ||         |   \/   |         .      .
 *  |  |  |  |      |  |    ||         ||\  /|  |
 *  |  |  |  |      |  |    ||         || \/ |  |         '  '  '
 *  |  |  |  |      |  |    ||         ||    |  |         .      .
 *  |  |_/  /        \  \__//          ||    |  |
 * /_______/ynamic    \____/niversal  /__\  /____\usic   /|  .  . ibliotheque
 *                                                      /  \
 *                                                     / .  \
 * readxm2.c - Function to read a Fast Tracker II     / / \  \
 *             module from an open file and do an    | <  /   \_
 *             initial run-through.                  |  \/ /\   /
 *                                                    \_  /  > /
 * Split off from readxm.c by entheh.                   | \ / /
 *                                                      |  ' /
 *                                                       \__/
 */

#include "dumb.h"



DUH *dumb_read_xm(DUMBFILE *f)
{
	DUH *duh = dumb_read_xm_quick(f);
	dumb_it_do_initial_runthrough(duh);
	return duh;
}