summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorrhyskidd <rhyskidd@076cb2c4-205e-83fd-5cf3-1be9aa105544>2012-05-31 14:34:39 +0000
committerrhyskidd <rhyskidd@076cb2c4-205e-83fd-5cf3-1be9aa105544>2012-05-31 14:34:39 +0000
commit985b945e4b49b5d5a1394e93fc3a95289c05e449 (patch)
tree6efc847e83ac3d885432fa96b1a60707acaec6bc
parent60e122989a8e626dea9a9b515532bf7e2ddb85a6 (diff)
downloadstarshatter-985b945e4b49b5d5a1394e93fc3a95289c05e449.zip
starshatter-985b945e4b49b5d5a1394e93fc3a95289c05e449.tar.gz
starshatter-985b945e4b49b5d5a1394e93fc3a95289c05e449.tar.bz2
Resovle a boolean being implicitly cast to a pointer
-rw-r--r--Stars45/ModConfig.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Stars45/ModConfig.cpp b/Stars45/ModConfig.cpp
index 8831a0a..5ee818e 100644
--- a/Stars45/ModConfig.cpp
+++ b/Stars45/ModConfig.cpp
@@ -1,6 +1,6 @@
/* Project Starshatter 5.0
Destroyer Studios LLC
- Copyright © 1997-2007. All Rights Reserved.
+ Copyright (C) 1997-2007. All Rights Reserved.
SUBSYSTEM: Stars.exe
FILE: ModConfig.cpp
@@ -198,7 +198,7 @@ ModConfig::GetModInfo(const char* filename)
return mod_info;
}
- return false;
+ return NULL;
}
// +-------------------------------------------------------------------+