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

This reverts commit ea5f5c4f00 as the actual
off-by-one error has been fixed.
This commit is contained in:
Tobias Doerffel
2014-02-20 23:29:43 +01:00
parent 29fcb9d7b9
commit 087a8ac159

View File

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