mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-05 01:38:36 +00:00
COMMON: Attempt to fix DS build
This commit is contained in:
parent
7bcce1fb7a
commit
12e7fb917b
@ -100,7 +100,7 @@ Debug &Debug::operator<<(unsigned int num) {
|
||||
return maybeSpace();
|
||||
}
|
||||
|
||||
#ifndef __DC__
|
||||
#if !defined(__DC__) && !defined(__DS__)
|
||||
Debug &Debug::operator<<(double num) {
|
||||
_stream->msg += String::format("%g", num);
|
||||
return maybeSpace();
|
||||
|
@ -43,8 +43,8 @@ public:
|
||||
Debug &operator<<(int number);
|
||||
Debug &operator<<(unsigned int number);
|
||||
|
||||
// DC has float and double equal
|
||||
#ifndef __DC__
|
||||
// DC and DS has float and double equal
|
||||
#if !defined(__DC__) && !defined(__DS__)
|
||||
Debug &operator<<(double number);
|
||||
#endif
|
||||
Debug &operator<<(float number);
|
||||
|
Loading…
x
Reference in New Issue
Block a user