removed some errors

This commit is contained in:
David Skoland 2017-02-12 11:15:43 +01:00
parent c836981e55
commit d318f1a241
3 changed files with 5 additions and 3 deletions

View File

@ -51,6 +51,9 @@ void AOCharMovie::play_talking(QString p_char, QString p_emote)
this->show(); this->show();
m_movie->start(); m_movie->start();
//D3bug
m_movie->
} }
void AOCharMovie::play_idle(QString p_char, QString p_emote) void AOCharMovie::play_idle(QString p_char, QString p_emote)

View File

@ -510,8 +510,7 @@ void Courtroom::set_size_and_pos(QWidget *p_widget, QString p_identifier)
if (design_ini_result.width < 0 || design_ini_result.height < 0) if (design_ini_result.width < 0 || design_ini_result.height < 0)
{ {
//at this point it's pretty much game over qDebug() << "W: could not find \"" << p_identifier << "\" in courtroom_design.ini";
call_error(" could not find \"" + p_identifier + "\" in courtroom_design.ini");
} }
} }

View File

@ -135,7 +135,7 @@ void Lobby::set_size_and_pos(QWidget *p_widget, QString p_identifier)
if (design_ini_result.width < 0 || design_ini_result.height < 0) if (design_ini_result.width < 0 || design_ini_result.height < 0)
{ {
call_error(" could not find \"" + p_identifier + "\" in lobby_design.ini"); qDebug() << "W: could not find " << p_identifier << " in lobby_design.ini";
} }
} }