Remove some unneeded printouts

This commit is contained in:
simon.kagstrom 2010-01-30 17:32:07 +00:00
parent 8c5894b7ac
commit c7023f1210
2 changed files with 0 additions and 3 deletions

View File

@ -147,8 +147,6 @@ public:
virtual void timeoutCallback() virtual void timeoutCallback()
{ {
printf("Hovering timed out over %s\n",
this->pp_msgs[this->cur_sel]);
Gui::gui->dv->loadGameInfo(this->pp_msgs[this->cur_sel]); Gui::gui->dv->loadGameInfo(this->pp_msgs[this->cur_sel]);
} }

View File

@ -158,7 +158,6 @@ GameInfo *GameInfo::loadFromFile(const char *fileName)
GameInfo *out = NULL; GameInfo *out = NULL;
FILE *fp; FILE *fp;
printf("Woho! I'll load %s\n", fileName);
if (stat(fileName, &st) < 0) if (stat(fileName, &st) < 0)
return NULL; return NULL;
if (st.st_size <= (signed)sizeof(struct game_info)) if (st.st_size <= (signed)sizeof(struct game_info))