isle-portable/CONFIG/AboutDlg.cpp
VoxelTek fdda4d4f54 Run clang-format, remove colour bit depth, bug fix
Ran clang-format to have the code formatted properly (so it'll pass checks), removed the colour bit depth option from the config tool (and set the default to 16bit), and fixed a bug where it was writing the bit depth (an int) as a bool to the ini file.
2025-06-19 10:35:48 +10:00

19 lines
356 B
C++

#include "AboutDlg.h"
#include "decomp.h"
#include <ui_about.h>
DECOMP_SIZE_ASSERT(CDialog, 0x60)
DECOMP_SIZE_ASSERT(CAboutDialog, 0x60)
// FIXME: disable dialog resizing
// FUNCTION: CONFIG 0x00403c20
CAboutDialog::CAboutDialog() : QDialog()
{
m_ui = new Ui::AboutDialog;
m_ui->setupUi(this);
layout()->setSizeConstraint(QLayout::SetFixedSize);
}