diff options
author | deva <deva> | 2005-07-27 12:40:47 +0000 |
---|---|---|
committer | deva <deva> | 2005-07-27 12:40:47 +0000 |
commit | 6046ed450a83f509c4e5f2923ae4f8fcda9fd669 (patch) | |
tree | cee3b8aaed9e63d5458325cba118569d3f4c42f8 /src/player.cc | |
parent | aa76292f4ceb8bfa94066bd035dda81c95bc9052 (diff) |
*** empty log message ***
Diffstat (limited to 'src/player.cc')
-rw-r--r-- | src/player.cc | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/player.cc b/src/player.cc index f98b9a0..42b4f5d 100644 --- a/src/player.cc +++ b/src/player.cc @@ -39,6 +39,9 @@ /* * $Log$ + * Revision 1.32 2005/07/27 12:40:47 deva + * *** empty log message *** + * * Revision 1.31 2005/07/26 16:16:56 deva * * Added fullscreen functionality. @@ -127,15 +130,12 @@ void Player::reinitSDL() void Player::deinitSDL() { - printf("Deinit SDL..."); SDL_FreeYUVOverlay(overlay); SDL_Quit(); - printf("done!\n"); } void Player::initSDL() { - printf("Init SDL..."); if(SDL_Init(SDL_INIT_VIDEO) < 0) { info->error("Unable to init SDL: %s.", SDL_GetError()); noErrors = false; @@ -174,8 +174,6 @@ void Player::initSDL() rect.y = 0; rect.w = width; rect.h = height; - - printf("done!\n"); } void Player::player() @@ -288,8 +286,6 @@ void Player::stop() // of SDL, while calling it.! void Player::resize(int w, int h) { - printf("Resizing to: %d x %d\n", w, h); - // Tell loop to stop bypass = true; |