mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Windows ANGLE compatability warnings
This commit is contained in:
parent
b71ef45a3e
commit
42d29ae75c
@ -177,6 +177,13 @@ bool MD300W1Loader::readDATFile(QString path)
|
||||
// Number of records
|
||||
int n = ((unsigned char)data.at(2) << 8) | (unsigned char)data.at(1);
|
||||
|
||||
// CHECKME:
|
||||
if (size < (n*11)+3) {
|
||||
qDebug() << "Short MD300W1 .dat file" << path;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
unsigned char o2, pr;
|
||||
|
||||
qint32 lasttime=0, ts=0;
|
||||
|
@ -24,6 +24,7 @@
|
||||
#include <QPushButton>
|
||||
#include <QSettings>
|
||||
#include <QFileDialog>
|
||||
#include <QSysInfo>
|
||||
|
||||
#include "SleepLib/schema.h"
|
||||
#include "mainwindow.h"
|
||||
@ -142,6 +143,7 @@ void sDelay(int s)
|
||||
|
||||
int compareVersion(QString version);
|
||||
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
#ifdef Q_WS_X11
|
||||
@ -177,6 +179,32 @@ int main(int argc, char *argv[])
|
||||
initializeStrings(); // Important, call this AFTER translator is installed.
|
||||
a.setApplicationName(STR_TR_SleepyHead);
|
||||
|
||||
#if defined(Q_OS_WIN)
|
||||
#ifndef BROKEN_OPENGL_BUILD
|
||||
QString glversion = (char *)glGetString(GL_VERSION);
|
||||
qDebug() << "OpenGL Version detected:" << glversion;
|
||||
// if (QSysInfo::windowsVersion() < QSysInfo::WV_VISTA) {
|
||||
if (glversion.contains("ANGLE")) {
|
||||
QMessageBox::warning(nullptr, QObject::tr("You have the wrong version of SleepyHead"),
|
||||
QObject::tr("This build of SleepyHead was designed to work with computers lacking full OpenGL 2.0 support, and only runs on (native) Windows Vista or higher.") + "<br/><br/>"+
|
||||
QObject::tr("There is another special build available for computers that do not support OpenGL 2.0 via ANGLE, tagged '-BrokenGL', that has been designed to work with Windows XP, Virtual Box, VMware, etc.")+"<br/><br/>"+
|
||||
QObject::tr("Because graphs will not render correctly, this version will now exit."), QMessageBox::Ok, QMessageBox::Ok);
|
||||
exit(1);
|
||||
}
|
||||
// }
|
||||
#else
|
||||
if (QSysInfo::windowsVersion() > QSysInfo::WV_VISTA) {
|
||||
QMessageBox::information(nullptr, QObject::tr("A faster build may be available"),
|
||||
QObject::tr("This special build of SleepyHead was designed to work with computers lacking OpenGL 2.0 support.") + "<br/><br/>"+
|
||||
QObject::tr("There is another special build available for computers running Windows Vista or higher that do not support OpenGL 2.0, tagged 'ANGLE', which will work faster on your computer.")+"<br/><br/>"+
|
||||
QObject::tr("If your running Windows in a Virutal machine, disregard this message, because the version you are running works best.")
|
||||
|
||||
QMessageBox::Ok, QMessageBox::Ok);
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Datafolder location Selection
|
||||
////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
Loading…
Reference in New Issue
Block a user