Might have fixed 64-bit issues. :)

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401499
This commit is contained in:
Sam Lantinga 2006-03-11 22:54:12 +00:00
parent c2a4bb7b9a
commit 2a752c3732
2 changed files with 8 additions and 6 deletions

View file

@ -31,7 +31,7 @@ int ThreadFunc(void *data) {
SDL_Thread *sub_threads[NUMTHREADS];
int flags[NUMTHREADS];
int i;
int tid = (int ) data;
uintptr_t tid = (uintptr_t)data;
fprintf(stderr, "Creating Thread %d\n", tid);
@ -59,7 +59,7 @@ int ThreadFunc(void *data) {
int main(int argc, char *argv[])
{
SDL_Thread *threads[NUMTHREADS];
int i;
uintptr_t i;
/* Load the SDL library */
if ( SDL_Init(0) < 0 ) {