]> Shamusworld >> Repos - apple2/blobdiff - src/log.cpp
Converted to SDL 2, added fullscreen toggle.
[apple2] / src / log.cpp
index c52620c06813ce407fa8b13589b2ec8dbefeb0f9..ebf253544983dfc1499f3a81a66abab48a3b9a01 100755 (executable)
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdarg.h>
-#include "types.h"
+#include <stdint.h>
 
 #define MAX_LOG_SIZE           10000000                                // Maximum size of log file (10 MB)
 
 static FILE * log_stream = NULL;
-static uint32 logSize = 0;
+static uint32_t logSize = 0;
 
 bool InitLog(const char * path)
 {