goat3dgfx

diff src/logger.h @ 5:18879c956eb1

- skycube example - added fatal_log - changed the dataset to keep the whole path while searching for data files
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 17 Nov 2013 03:22:40 +0200
parents 1873dfd13f2d
children 7d6b667821cf
line diff
     1.1 --- a/src/logger.h	Sat Nov 16 21:09:42 2013 +0200
     1.2 +++ b/src/logger.h	Sun Nov 17 03:22:40 2013 +0200
     1.3 @@ -4,6 +4,7 @@
     1.4  void info_log(const char *fmt, ...);
     1.5  void warning_log(const char *fmt, ...);
     1.6  void error_log(const char *fmt, ...);
     1.7 +void fatal_log(const char *fmt, ...);
     1.8  void debug_log(const char *fmt, ...);
     1.9  
    1.10  #endif	// LOGGER_H_