diff options
author | Chris Xiong <chirs241097@gmail.com> | 2017-06-17 22:43:07 +0800 |
---|---|---|
committer | Chris Xiong <chirs241097@gmail.com> | 2017-06-17 22:43:07 +0800 |
commit | 123771f6b50550d35ba3f6d7c87e240686c23703 (patch) | |
tree | cfaac5cc5195eb10f9e8a246e589f0e498a0475a /smelt/sdl | |
parent | 16a560a5e723c27e61f5bba945a089b7b926f4ae (diff) | |
download | SMELT-123771f6b50550d35ba3f6d7c87e240686c23703.tar.xz |
Fixed example application.
Fixed compile errors in Windows.
Diffstat (limited to 'smelt/sdl')
-rw-r--r-- | smelt/sdl/makefile | 2 | ||||
-rw-r--r-- | smelt/sdl/sys_sdl.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/smelt/sdl/makefile b/smelt/sdl/makefile index d58f077..f118481 100644 --- a/smelt/sdl/makefile +++ b/smelt/sdl/makefile @@ -1,5 +1,5 @@ CC= g++ -CXXFLAGS= -c -g -O2 -std=c++11 -Wall -I/usr/include/SDL/ -I../include -D_LINUX -fPIC +CXXFLAGS= -c -g -O2 -std=c++11 -Wall -I/usr/include/SDL/ -I../../include -D_LINUX -fPIC TARGET= libsmelt.a all: objects-normal archive-normal diff --git a/smelt/sdl/sys_sdl.cpp b/smelt/sdl/sys_sdl.cpp index beb07a0..c0f64d0 100644 --- a/smelt/sdl/sys_sdl.cpp +++ b/smelt/sdl/sys_sdl.cpp @@ -51,7 +51,7 @@ bool SMELT_IMPL::smInit() int CPUInfo[4]={-1}; __cpuid(CPUInfo,0x80000000); unsigned int nExIds=CPUInfo[0]; - char *cpuName,*loced;cpuName=calloc(0x40,sizeof(char));loced=cpuName; + char *cpuName,*loced;cpuName=(char*)calloc(0x40,sizeof(char));loced=cpuName; for(unsigned int i=0x80000000;i<=nExIds;++i) { __cpuid(CPUInfo, i); |