diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-17 20:57:37 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-17 20:57:37 +0200 |
commit | 9acdd1f2356605d742f236ca275460dd9928bb11 (patch) | |
tree | 8ddba80cdf284cafdcac44de39f8099f396c0ed4 /src/combined/nsf_decoder.c | |
parent | 42dc706af7a1f43c7ded0cc28957c8beb9ab08b1 (diff) | |
parent | 5935b6fbe5c4d83ea35a1464b3a1c32e00b23304 (diff) | |
download | xine-lib-9acdd1f2356605d742f236ca275460dd9928bb11.tar.gz xine-lib-9acdd1f2356605d742f236ca275460dd9928bb11.tar.bz2 |
Merge changes from Solaris branch. (1.2 branch commit).
Diffstat (limited to 'src/combined/nsf_decoder.c')
-rw-r--r-- | src/combined/nsf_decoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/combined/nsf_decoder.c b/src/combined/nsf_decoder.c index 01884f267..b1d8e706c 100644 --- a/src/combined/nsf_decoder.c +++ b/src/combined/nsf_decoder.c @@ -93,7 +93,7 @@ static void nsf_decode_data (audio_decoder_t *this_gen, buf_element_t *buf) { this->song_number = buf->content[4]; /* allocate a buffer for the file */ - this->nsf_size = BE_32(&buf->content[0]); + this->nsf_size = _X_BE_32(&buf->content[0]); this->nsf_file = xine_xmalloc(this->nsf_size); this->nsf_index = 0; |