mirror of
https://github.com/ioquake/launch.git
synced 2025-04-20 05:50:49 +00:00
Fixed uninitialized memory and one small typo.
This commit is contained in:
parent
b11ebf35b3
commit
f1e8bbe2de
1 changed files with 3 additions and 2 deletions
|
@ -3,7 +3,8 @@
|
|||
|
||||
ioLaunch::ioLaunch(QWidget *parent) :
|
||||
QMainWindow(parent),
|
||||
ui(new Ui::ioLaunch)
|
||||
ui(new Ui::ioLaunch),
|
||||
ioWidth(0), ioHeight(0), ioWedited(false), ioHedited(false)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
resOption = "";
|
||||
|
@ -116,7 +117,7 @@ void ioLaunch::on_cbResolution_currentIndexChanged(int index)
|
|||
}
|
||||
case 8:
|
||||
{
|
||||
resOption = " +set r_customwidth 1024 +set r_customheight 3768";
|
||||
resOption = " +set r_customwidth 1024 +set r_customheight 768";
|
||||
break;
|
||||
}
|
||||
case 9:
|
||||
|
|
Loading…
Reference in a new issue