summaryrefslogtreecommitdiff
path: root/src/player.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/player.cc')
-rw-r--r--src/player.cc10
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;