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/dc | |
| 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/dc')
| -rw-r--r-- | backends/platform/dc/display.cpp | 2 | ||||
| -rw-r--r-- | backends/platform/dc/input.cpp | 6 | 
2 files changed, 4 insertions, 4 deletions
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;  	}        }      }  | 
