diff options
| author | Max Horn | 2011-05-02 14:42:08 +0200 |
|---|---|---|
| committer | Max Horn | 2011-05-02 16:31:31 +0200 |
| commit | 59e77ed66779d33a14a5f4d2a5885a70b793f36f (patch) | |
| tree | 3ca3827f015218ff995faa8be78e21cd631be8ff /backends/events | |
| parent | 58eebff8039bb5cfc9a66bcfadfe078abb94556f (diff) | |
| download | scummvm-rg350-59e77ed66779d33a14a5f4d2a5885a70b793f36f.tar.gz scummvm-rg350-59e77ed66779d33a14a5f4d2a5885a70b793f36f.tar.bz2 scummvm-rg350-59e77ed66779d33a14a5f4d2a5885a70b793f36f.zip | |
ALL: Mark printf and various other symbols as forbidden
Right now, a few places in the frontend code still use printf and
consorts. We mark the affected files with a FIXME for now, and
add a dedicated exception for each. To be fixed!
Also tweak FORBIDDEN_SYMBOL_REPLACEMENT to hopefully really always
enforce a compiler error
Diffstat (limited to 'backends/events')
| -rw-r--r-- | backends/events/sdl/sdl-events.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/events/sdl/sdl-events.cpp b/backends/events/sdl/sdl-events.cpp index 26df03802c..6e343b63f5 100644 --- a/backends/events/sdl/sdl-events.cpp +++ b/backends/events/sdl/sdl-events.cpp @@ -66,7 +66,7 @@ SdlEventSource::SdlEventSource() // Enable joystick if (SDL_NumJoysticks() > 0) { - printf("Using joystick: %s\n", SDL_JoystickName(0)); + debug("Using joystick: %s", SDL_JoystickName(0)); _joystick = SDL_JoystickOpen(joystick_num); } } |
