From 9a2f3d3377b82b597f00d1d8fb8ee58d141cfb95 Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Fri, 9 Dec 2011 21:12:14 +0000 Subject: More string safety stuff --- Stars45/Intel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Stars45/Intel.cpp') diff --git a/Stars45/Intel.cpp b/Stars45/Intel.cpp index 172f2e1..6586ad2 100644 --- a/Stars45/Intel.cpp +++ b/Stars45/Intel.cpp @@ -39,7 +39,7 @@ int Intel::IntelFromName(const char* type_name) { for (int i = RESERVE; i <= TRACKED; i++) - if (!stricmp(type_name, intel_name[i])) + if (!_stricmp(type_name, intel_name[i])) return i; return 0; -- cgit v1.1