diff options
author | Max Horn | 2007-07-01 12:47:07 +0000 |
---|---|---|
committer | Max Horn | 2007-07-01 12:47:07 +0000 |
commit | e2ad271bd854369b437524cde60bfcb462225b82 (patch) | |
tree | d939d2be1b221b1ef57e58b24d1d4cc45062f5b6 /backends/platform | |
parent | d2189e7111fc4aab508395ed136d094e8893717b (diff) | |
download | scummvm-rg350-e2ad271bd854369b437524cde60bfcb462225b82.tar.gz scummvm-rg350-e2ad271bd854369b437524cde60bfcb462225b82.tar.bz2 scummvm-rg350-e2ad271bd854369b437524cde60bfcb462225b82.zip |
Removing non-ASCII chars from source code
svn-id: r27818
Diffstat (limited to 'backends/platform')
-rw-r--r-- | backends/platform/PalmOS/Src/launcher/launch.cpp | 2 | ||||
-rw-r--r-- | backends/platform/dc/display.cpp | 2 | ||||
-rw-r--r-- | backends/platform/dc/input.cpp | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/backends/platform/PalmOS/Src/launcher/launch.cpp b/backends/platform/PalmOS/Src/launcher/launch.cpp index 7bc07c4fdf..9613abf1cc 100644 --- a/backends/platform/PalmOS/Src/launcher/launch.cpp +++ b/backends/platform/PalmOS/Src/launcher/launch.cpp @@ -424,7 +424,7 @@ Boolean StartScummVM(Int16 engine) { toLauncher= (gPrefs->exitLauncher); // gVars values - // (gVars->HRrefNum defined in checkHRmode on Clié) + // (gVars->HRrefNum defined in checkHRmode on Clie) #ifndef _DEBUG_ENGINE gVars->VFS.volRefNum = (gPrefs->card.autoDetect ? vfsInvalidVolRef : gPrefs->card.volRefNum); #else diff --git a/backends/platform/dc/display.cpp b/backends/platform/dc/display.cpp index da9f6e83ff..610fe0b108 100644 --- a/backends/platform/dc/display.cpp +++ b/backends/platform/dc/display.cpp @@ -585,7 +585,7 @@ void OSystem_Dreamcast::copyRectToOverlay(const int16 *buf, int pitch, static const OSystem::GraphicsMode gfxmodes[] = { - { "default", "640×480 16bpp", 0 }, + { "default", "640x480 16bpp", 0 }, { NULL, NULL, 0 } }; diff --git a/backends/platform/dc/input.cpp b/backends/platform/dc/input.cpp index bb4a2b9ec0..aa0d9efa21 100644 --- a/backends/platform/dc/input.cpp +++ b/backends/platform/dc/input.cpp @@ -98,8 +98,8 @@ int handleInput(struct mapledev *pad, int &mouse_x, int &mouse_y, newkey = key+('1'-0x59); else if(key >= 0x2d && key <= 0x38 && key != 0x31) newkey = ((shift & 0x22)? - "=¯`{ }+*½<>?" : - "-^@[ ];:§,./")[key - 0x2d]; + "=?`{ }+*?<>?" : + "-^@[ ];:?,./")[key - 0x2d]; else if(key >= 0x3a && key <= 0x43) newkey = key+(Common::KEYCODE_F1-0x3a); else if(key >= 0x54 && key <= 0x57) @@ -134,7 +134,7 @@ int handleInput(struct mapledev *pad, int &mouse_x, int &mouse_y, case 0x64: case 0x87: newkey = ((shift & 0x22)? '_' : '\\'); break; case 0x89: - newkey = ((shift & 0x22)? '|' : '¥'); break; + newkey = ((shift & 0x22)? '|' : '?'); break; } } } |