diff options
Diffstat (limited to 'backends/platform/ds/arm9/source/osystem_ds.cpp')
| -rw-r--r-- | backends/platform/ds/arm9/source/osystem_ds.cpp | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/backends/platform/ds/arm9/source/osystem_ds.cpp b/backends/platform/ds/arm9/source/osystem_ds.cpp index 90af02f43b..eab9fd6a33 100644 --- a/backends/platform/ds/arm9/source/osystem_ds.cpp +++ b/backends/platform/ds/arm9/source/osystem_ds.cpp @@ -857,6 +857,13 @@ Common::String OSystem_DS::getDefaultConfigFileName() {  	return DEFAULT_CONFIG_FILE;  } +void OSystem_DS::logMessage(LogMessageType::Type type, const char *message) { +#ifndef DISABLE_TEXT_CONSOLE +	nocashMessage((char *)message); +//	consolePrintf((char *)message); +#endif +} +  u16 OSystem_DS::applyGamma(u16 color) {  	// Attempt to do gamma correction (or something like it) to palette entries  	// to improve the contrast of the image on the original DS screen. | 
