Papu: fixed out-of-bounds array access due to too small data types

Build failed on Win32 with GCC 4.8.
This commit is contained in:
Tobias Doerffel
2014-01-26 23:45:49 +01:00
parent d5113d0059
commit ea5f5c4f00

View File

@@ -6,8 +6,8 @@
#ifndef GB_APU_H
#define GB_APU_H
typedef long gb_time_t; // clock cycle count
typedef unsigned gb_addr_t; // 16-bit address
typedef int gb_time_t; // clock cycle count
typedef int gb_addr_t; // 16-bit address
#include "Gb_Oscs.h"