From 0e2fa6eb9d131747c4134ebf91d42cfb26ac2c40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Moln=C3=A1r?= Date: Tue, 20 Mar 2007 09:30:30 +0100 Subject: [PATCH] no need to warn for x86 wince files --- src/p_w32pe.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/p_w32pe.cpp b/src/p_w32pe.cpp index d7e480bc..15b4041a 100644 --- a/src/p_w32pe.cpp +++ b/src/p_w32pe.cpp @@ -607,7 +607,8 @@ void PackW32Pe::pack(OutputFile *fo) (ih.cpu < 0x14c || ih.cpu > 0x150) || (ih.opthdrsize != 0xe0) || ((ih.flags & EXECUTABLE) == 0) - || (ih.subsystem != 2 && ih.subsystem != 3 && ih.subsystem != 1) + || (ih.subsystem != 2 && ih.subsystem != 3 + && ih.subsystem != 1 && ih.subsystem != 9) || (ih.entry == 0 && !isdll) || (ih.ddirsentries != 16) || IDSIZE(PEDIR_EXCEPTION) // is this used on i386?