summaryrefslogtreecommitdiff
path: root/apps/codecs/libgme/blargg_config.h
diff options
context:
space:
mode:
authorTorne Wuff <torne@wolfpuppy.org.uk>2011-11-06 22:44:25 +0000
committerTorne Wuff <torne@wolfpuppy.org.uk>2011-11-06 22:44:25 +0000
commit569285794b9112f0134ddad4bb886308ea4a7be6 (patch)
treece702cb07829820261a682c471133c76d11c610e /apps/codecs/libgme/blargg_config.h
parentd9b7d58fa6c9ceb136bea429adf6746cc7138208 (diff)
downloadrockbox-569285794b9112f0134ddad4bb886308ea4a7be6.tar.gz
rockbox-569285794b9112f0134ddad4bb886308ea4a7be6.zip
Bulk convert all DOS line endings to UNIX.
For the git migration we want a nice clean repository with UNIX line endings. git does not use svn:eol-style, we just need the file contents to be sane. Sorry everybody. I know this messes up blame. Scumbag *NIX developer says migrating to git will make line ending issues go away; commits giant change to svn which changes line endings anyway. :) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30924 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libgme/blargg_config.h')
-rw-r--r--apps/codecs/libgme/blargg_config.h84
1 files changed, 42 insertions, 42 deletions
diff --git a/apps/codecs/libgme/blargg_config.h b/apps/codecs/libgme/blargg_config.h
index 6490c15cfb..398913d1fe 100644
--- a/apps/codecs/libgme/blargg_config.h
+++ b/apps/codecs/libgme/blargg_config.h
@@ -1,42 +1,42 @@
1// Library configuration. Modify this file as necessary. 1// Library configuration. Modify this file as necessary.
2 2
3#ifndef BLARGG_CONFIG_H 3#ifndef BLARGG_CONFIG_H
4#define BLARGG_CONFIG_H 4#define BLARGG_CONFIG_H
5 5
6// Uncomment to enable platform-specific optimizations 6// Uncomment to enable platform-specific optimizations
7//#define BLARGG_NONPORTABLE 1 7//#define BLARGG_NONPORTABLE 1
8 8
9// Uncomment if automatic byte-order determination doesn't work 9// Uncomment if automatic byte-order determination doesn't work
10#ifdef ROCKBOX_BIG_ENDIAN 10#ifdef ROCKBOX_BIG_ENDIAN
11 #define BLARGG_BIG_ENDIAN 1 11 #define BLARGG_BIG_ENDIAN 1
12#endif 12#endif
13 13
14// Uncomment if you get errors in the bool section of blargg_common.h 14// Uncomment if you get errors in the bool section of blargg_common.h
15#define BLARGG_COMPILER_HAS_BOOL 1 15#define BLARGG_COMPILER_HAS_BOOL 1
16 16
17// Uncomment to use fast gb apu implementation 17// Uncomment to use fast gb apu implementation
18// #define GB_APU_FAST 1 18// #define GB_APU_FAST 1
19 19
20// Uncomment to remove agb emulation support 20// Uncomment to remove agb emulation support
21// #define GB_APU_NO_AGB 1 21// #define GB_APU_NO_AGB 1
22 22
23// Uncomment to emulate only nes apu 23// Uncomment to emulate only nes apu
24// #define NSF_EMU_APU_ONLY 1 24// #define NSF_EMU_APU_ONLY 1
25 25
26// Uncomment to remove vrc7 apu support 26// Uncomment to remove vrc7 apu support
27// #define NSF_EMU_NO_VRC7 1 27// #define NSF_EMU_NO_VRC7 1
28 28
29// Uncomment to remove fmopl apu support 29// Uncomment to remove fmopl apu support
30// #define KSS_EMU_NO_FMOPL 1 30// #define KSS_EMU_NO_FMOPL 1
31 31
32// To handle undefined reference to assert 32// To handle undefined reference to assert
33#define NDEBUG 1 33#define NDEBUG 1
34 34
35// Use standard config.h if present 35// Use standard config.h if present
36#define HAVE_CONFIG_H 1 36#define HAVE_CONFIG_H 1
37 37
38#ifdef HAVE_CONFIG_H 38#ifdef HAVE_CONFIG_H
39 #include "config.h" 39 #include "config.h"
40#endif 40#endif
41 41
42#endif 42#endif