changed uint to unsigned int for cross-platform purposes
This commit is contained in:
parent
71a7c21709
commit
ba403a67ad
|
@ -135,7 +135,6 @@ set(MAIN_HEADERS
|
|||
src/al-util.h
|
||||
src/boost-hash.h
|
||||
src/debugwriter.h
|
||||
src/defines.hpp
|
||||
)
|
||||
|
||||
set(MAIN_SOURCE
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
typedef unsigned int uint
|
|
@ -23,7 +23,6 @@
|
|||
|
||||
#include "font.h"
|
||||
#include "util.h"
|
||||
#include "defines.hpp"
|
||||
#include "exception.h"
|
||||
#include "boost-hash.h"
|
||||
#include "debugwriter.h"
|
||||
|
@ -329,7 +328,7 @@ RGSS_openArchive(PHYSFS_Io *io, const char *, int forWrite)
|
|||
nameLen ^= advanceMagic(magic);
|
||||
|
||||
static char nameBuf[512];
|
||||
uint i;
|
||||
unsigned int i;
|
||||
for (i = 0; i < nameLen; ++i)
|
||||
{
|
||||
char c;
|
||||
|
|
Loading…
Reference in New Issue