changed uint to unsigned int for cross-platform purposes

This commit is contained in:
Marty Plummer 2014-06-01 01:47:37 -05:00
parent 71a7c21709
commit ba403a67ad
3 changed files with 1 additions and 4 deletions

View File

@ -135,7 +135,6 @@ set(MAIN_HEADERS
src/al-util.h src/al-util.h
src/boost-hash.h src/boost-hash.h
src/debugwriter.h src/debugwriter.h
src/defines.hpp
) )
set(MAIN_SOURCE set(MAIN_SOURCE

View File

@ -1 +0,0 @@
typedef unsigned int uint

View File

@ -23,7 +23,6 @@
#include "font.h" #include "font.h"
#include "util.h" #include "util.h"
#include "defines.hpp"
#include "exception.h" #include "exception.h"
#include "boost-hash.h" #include "boost-hash.h"
#include "debugwriter.h" #include "debugwriter.h"
@ -329,7 +328,7 @@ RGSS_openArchive(PHYSFS_Io *io, const char *, int forWrite)
nameLen ^= advanceMagic(magic); nameLen ^= advanceMagic(magic);
static char nameBuf[512]; static char nameBuf[512];
uint i; unsigned int i;
for (i = 0; i < nameLen; ++i) for (i = 0; i < nameLen; ++i)
{ {
char c; char c;