From bba13d30a60b047b7d357130be6bd03da2c499a7 Mon Sep 17 00:00:00 2001 From: Zach Bacon Date: Sun, 31 Jul 2016 09:13:14 -0400 Subject: [PATCH] Minor compile issue, should be pretty much the last of it, next is the update check. --- src/gba/GBALink.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gba/GBALink.cpp b/src/gba/GBALink.cpp index 821b3da0..01e5d259 100644 --- a/src/gba/GBALink.cpp +++ b/src/gba/GBALink.cpp @@ -232,9 +232,9 @@ static ConnectionState ConnectUpdateSocket(char* const message, size_t size); static void UpdateCableSocket(int ticks); static void CloseSocket(); -const u64 TICKS_PER_FRAME = TICKS_PER_SECOND / 60; -const u64 BITS_PER_SECOND = 115200; -const u64 BYTES_PER_SECOND = BITS_PER_SECOND / 8; +const uint64_t TICKS_PER_FRAME = TICKS_PER_SECOND / 60; +const uint64_t BITS_PER_SECOND = 115200; +const uint64_t BYTES_PER_SECOND = BITS_PER_SECOND / 8; static uint32_t lastjoybusupdate = 0; static uint32_t nextjoybusupdate = 0;