summaryrefslogtreecommitdiffhomepage
path: root/nGenEx/Game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'nGenEx/Game.cpp')
-rw-r--r--nGenEx/Game.cpp25
1 files changed, 14 insertions, 11 deletions
diff --git a/nGenEx/Game.cpp b/nGenEx/Game.cpp
index b9d1f25..a7c6563 100644
--- a/nGenEx/Game.cpp
+++ b/nGenEx/Game.cpp
@@ -257,17 +257,20 @@ Game::Init(HINSTANCE hi, HINSTANCE hpi, LPSTR cmdline, int nCmdShow)
}
if (status == OK) {
- if (MachineInfo::GetPlatform() == MachineInfo::OS_WINNT) {
- Panic(" D3D not available under WinNT 4");
- status = INIT_FAILED;
- }
-
- else if (MachineInfo::GetDirectXVersion() < MachineInfo::DX_9) {
- Panic(" Insufficient DirectX detected (Dx9 IS REQUIRED)");
- status = INIT_FAILED;
- }
-
- Print(" Gamma Level = %d\n", gamma);
+ static int os_version = MachineInfo::GetPlatform();
+
+ if (os_version == MachineInfo::OS_WIN95 || os_version == MachineInfo::OS_WIN98) {
+ Panic(" Windows 95 and 98 are no longer supported. Please update to Windows XP or higher.");
+ status = INIT_FAILED;
+ } else if (os_version == MachineInfo::OS_WINNT) {
+ Panic(" D3D not available under WinNT 4");
+ status = INIT_FAILED;
+ } else if (MachineInfo::GetDirectXVersion() < MachineInfo::DX_9) {
+ Panic(" Insufficient DirectX detected (Dx9 IS REQUIRED)");
+ status = INIT_FAILED;
+ }
+
+ Print(" Gamma Level = %d\n", gamma);
}
if (status == OK) {