From 06b218d5d7893e39577dfbedd86dccc8169a2d3d Mon Sep 17 00:00:00 2001 From: Jonas Kulla Date: Sun, 8 Jun 2014 06:57:32 +0200 Subject: [PATCH] Don't rely on non-standard typedef (thanks @ntzrmtthihu777) --- src/filesystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/filesystem.cpp b/src/filesystem.cpp index 7de9138..73061c3 100644 --- a/src/filesystem.cpp +++ b/src/filesystem.cpp @@ -328,7 +328,7 @@ RGSS_openArchive(PHYSFS_Io *io, const char *, int forWrite) nameLen ^= advanceMagic(magic); static char nameBuf[512]; - uint i; + uint32_t i; for (i = 0; i < nameLen; ++i) { char c;