diff options
author | Torbjörn Andersson | 2005-07-04 07:43:55 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2005-07-04 07:43:55 +0000 |
commit | caa614840d4b849c24e974c72cffd38bbc1f8a60 (patch) | |
tree | 9dc137f936688eee18a701ed6e91f503b73828e4 | |
parent | 407dd03e2862a6eaa96ad1046350a020065c4dc2 (diff) | |
download | scummvm-rg350-caa614840d4b849c24e974c72cffd38bbc1f8a60.tar.gz scummvm-rg350-caa614840d4b849c24e974c72cffd38bbc1f8a60.tar.bz2 scummvm-rg350-caa614840d4b849c24e974c72cffd38bbc1f8a60.zip |
Fixed warning.
svn-id: r18489
-rw-r--r-- | saga/isomap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/saga/isomap.cpp b/saga/isomap.cpp index ab543981cb..36153d690d 100644 --- a/saga/isomap.cpp +++ b/saga/isomap.cpp @@ -1018,7 +1018,7 @@ int16 IsoMap::getTileIndex(int16 u, int16 v, int16 z) { metaTileIndex = 0; switch ( _tileMap.edgeType) { case kEdgeTypeBlack: - return NULL; + return 0; case kEdgeTypeFill0: break; case kEdgeTypeFill1: |