aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorChris Apers2003-06-08 09:29:53 +0000
committerChris Apers2003-06-08 09:29:53 +0000
commitea5bdbde417765befc42b2e8f8cd3e72123bfda7 (patch)
tree507d089c31d0fbcb42d162673816141112df6830 /backends
parent2600628339853a6734c5ebfd44c849c31e3f321c (diff)
downloadscummvm-rg350-ea5bdbde417765befc42b2e8f8cd3e72123bfda7.tar.gz
scummvm-rg350-ea5bdbde417765befc42b2e8f8cd3e72123bfda7.tar.bz2
scummvm-rg350-ea5bdbde417765befc42b2e8f8cd3e72123bfda7.zip
Reminder for future %c implementation
svn-id: r8394
Diffstat (limited to 'backends')
-rw-r--r--backends/PalmOS/Src/missing/_stdio.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/backends/PalmOS/Src/missing/_stdio.cpp b/backends/PalmOS/Src/missing/_stdio.cpp
index 2a9de216eb..e2898ac738 100644
--- a/backends/PalmOS/Src/missing/_stdio.cpp
+++ b/backends/PalmOS/Src/missing/_stdio.cpp
@@ -338,6 +338,9 @@ Int16 sprintf(Char* s, const Char* formatStr, ...)
///////////////////////////////////////////////////////////////////////////////
Int16 vsprintf(Char* s, const Char* formatStr, _Palm_va_list argParam)
{
+// Char buf[10];
+// StrPrintF(buf,"%c%c%c%c",'A' << 16 | 'B', 'C' << 16 | 'D');
+
Char format[256];
// TODO : need a better modifier
StrCopy(format,formatStr);