X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FOpenGL_Windows.cpp;h=fabb712dc5b787bbe613e2b89338daadd33998bc;hb=2a527b7862fd1741a35536ab5427ade2fff089c0;hp=9affb71359f7c2401d00640ccf4555d2b00cad0a;hpb=8866bcf90dba64f2fd6cecd6839b9b80988e46a6;p=lugaru.git diff --git a/Source/OpenGL_Windows.cpp b/Source/OpenGL_Windows.cpp index 9affb71..fabb712 100644 --- a/Source/OpenGL_Windows.cpp +++ b/Source/OpenGL_Windows.cpp @@ -19,10 +19,13 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ - +/* No need for Visual Leak Detector #ifdef WIN32 #include #endif +*/ + +#define USE_DEVIL 0 #ifndef USE_DEVIL # ifdef WIN32 @@ -1574,7 +1577,6 @@ int main(int argc, char **argv) LOGFUNC; #ifndef WIN32 // this is in WinMain, too. - logger.start(true); memset( &g_theKeys, 0, sizeof( KeyMap)); #endif @@ -1705,7 +1707,7 @@ int main(int argc, char **argv) std::string e = "Caught exception: "; e += error.what(); - LOG(e, Logger::LOG_ERR); + LOG(e); MessageBox(g_windowHandle, error.what(), "ERROR", MB_OK | MB_ICONEXCLAMATION); } @@ -2364,8 +2366,6 @@ int main(int argc, char **argv) } } - logger.start(true); - memset( &g_theKeys, 0, sizeof( KeyMap)); unsigned int i = 0; @@ -2679,7 +2679,7 @@ static bool load_png(const char *file_name, TGAImageRec &tex) png_init_io(png_ptr, fp); png_read_png(png_ptr, info_ptr, PNG_TRANSFORM_STRIP_16 | PNG_TRANSFORM_PACKING, - png_voidp_NULL); + NULL); png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -2729,7 +2729,7 @@ static bool load_png(const char *file_name, TGAImageRec &tex) retval = true; png_done: - png_destroy_read_struct(&png_ptr, &info_ptr, png_infopp_NULL); + png_destroy_read_struct(&png_ptr, &info_ptr, NULL); if (fp) fclose(fp); return (retval);