diff options
| author | Torbjörn Andersson | 2003-09-24 06:33:59 +0000 |
|---|---|---|
| committer | Torbjörn Andersson | 2003-09-24 06:33:59 +0000 |
| commit | 570e60a48797efa08ae5a6c7102f16678704bae8 (patch) | |
| tree | f7fe3554f78b9c5e70ba4391eeedb69a5f0911ea /scumm/script_v8.cpp | |
| parent | 3854ce8f3d060f5bb4c1e248d846f73a7fe2942c (diff) | |
| download | scummvm-rg350-570e60a48797efa08ae5a6c7102f16678704bae8.tar.gz scummvm-rg350-570e60a48797efa08ae5a6c7102f16678704bae8.tar.bz2 scummvm-rg350-570e60a48797efa08ae5a6c7102f16678704bae8.zip | |
Whitespace changes
svn-id: r10390
Diffstat (limited to 'scumm/script_v8.cpp')
| -rw-r--r-- | scumm/script_v8.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp index e502faa9df..82a4763306 100644 --- a/scumm/script_v8.cpp +++ b/scumm/script_v8.cpp @@ -1401,19 +1401,19 @@ void Scumm_v8::o8_kernelGetFunctions() { break; case 0xD3: // getKeyState switch(args[1]) { - // Stub out a few specific cases, just to make things less noisy - - // To actually implement this, we may need a new OSystem call to do - // asyncronous keyboard state checking... - case 0x14B: // Left Arrow depressed? - case 0x14D: // Right Arrow depressed? - case 0x09: // Tab depressed (fire in ship combat) - push(0); - break; - default: - warning("getKeyState(0x%X)", args[1]); - push(0); - break; + // Stub out a few specific cases, just to make things less noisy + + // To actually implement this, we may need a new OSystem call to do + // asyncronous keyboard state checking... + case 0x14B: // Left Arrow depressed? + case 0x14D: // Right Arrow depressed? + case 0x09: // Tab depressed (fire in ship combat) + push(0); + break; + default: + warning("getKeyState(0x%X)", args[1]); + push(0); + break; } break; case 0xCE: // getRGBSlot |
