diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/debug.cpp | 9 | ||||
-rw-r--r-- | common/util.cpp | 4 |
2 files changed, 0 insertions, 13 deletions
diff --git a/common/debug.cpp b/common/debug.cpp index afdb794273..f6dc065c88 100644 --- a/common/debug.cpp +++ b/common/debug.cpp @@ -45,15 +45,6 @@ #define fflush(file) DS::std_fflush(file) #endif -#ifdef __N64__ - #include <n64utils.h> - - #define fputs(str, file) asm("nop"); - #define fflush(a) asm("nop"); - #define OutputDebugString addLineTextLayer -#endif - - // TODO: Move gDebugLevel into namespace Common. int gDebugLevel = -1; diff --git a/common/util.cpp b/common/util.cpp index d131064e6c..da6e41544f 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -46,10 +46,6 @@ extern bool isSmartphone(); #define fputs(str, file) DS::std_fwrite(str, strlen(str), 1, file) #endif -#ifdef __N64__ - #define fputs(str, file) asm("nop"); -#endif - namespace Common { StringTokenizer::StringTokenizer(const String &str, const String &delimiters) : _str(str), _delimiters(delimiters) { |