diff options
author | Travis Howell | 2003-12-11 05:36:07 +0000 |
---|---|---|
committer | Travis Howell | 2003-12-11 05:36:07 +0000 |
commit | 2ef887fd445b5226da99bf2a0e1917d02806325c (patch) | |
tree | 98dd34bb550014d203e94330b09bbdcec6bdeff6 | |
parent | e11c741e825883f0771bef889fb73c03b9c47d32 (diff) | |
download | scummvm-rg350-2ef887fd445b5226da99bf2a0e1917d02806325c.tar.gz scummvm-rg350-2ef887fd445b5226da99bf2a0e1917d02806325c.tar.bz2 scummvm-rg350-2ef887fd445b5226da99bf2a0e1917d02806325c.zip |
Missed one spot.
svn-id: r11570
-rw-r--r-- | backends/sdl/sdl-common.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/backends/sdl/sdl-common.cpp b/backends/sdl/sdl-common.cpp index 4656d91232..60de904da7 100644 --- a/backends/sdl/sdl-common.cpp +++ b/backends/sdl/sdl-common.cpp @@ -682,14 +682,6 @@ bool OSystem_SDL_Common::poll_event(Event *event) { break; } - // Ctr-Alt-b changes to bilinear filtering in the OpenGL backend - if (ev.key.keysym.sym == 'b') { - prop.gfx_mode = GFX_BILINEAR; - property(PROP_SET_GFX_MODE, &prop); - break; - } - - // Increase/decrease the scale factor // TODO: Shall we 'wrap around' here? if (ev.key.keysym.sym == '=' || ev.key.keysym.sym == '+' || ev.key.keysym.sym == '-') { |