diff options
author | Zahary Karadjov <zahary@gmail.com> | 2012-06-14 17:33:00 +0300 |
---|---|---|
committer | Zahary Karadjov <zahary@gmail.com> | 2012-06-14 17:33:00 +0300 |
commit | b11fe5d0b477c58524ed3fc02ede6f13acef9622 (patch) | |
tree | 04c53a9dc422f6037e6bdb0472fafeda4c103a61 /lib/wrappers/sdl/sdl.nim | |
parent | 308cfc49b8e2d429c2f15fe13645cf2413d67582 (diff) | |
download | Nim-b11fe5d0b477c58524ed3fc02ede6f13acef9622.tar.gz |
more uint related fixes
Diffstat (limited to 'lib/wrappers/sdl/sdl.nim')
-rwxr-xr-x | lib/wrappers/sdl/sdl.nim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/wrappers/sdl/sdl.nim b/lib/wrappers/sdl/sdl.nim index cf4eb452d..a48cb59ef 100755 --- a/lib/wrappers/sdl/sdl.nim +++ b/lib/wrappers/sdl/sdl.nim @@ -756,9 +756,7 @@ type PUInt8Array* = ptr TUInt8Array TUInt8Array* = array[0..high(int) shr 1, byte] PUInt16* = ptr UInt16 - UInt16* = int16 - PUInt32* = ptr int32 - UInt32* = int32 + PUInt32* = ptr UInt32 PUInt64* = ptr UInt64 UInt64*{.final.} = object hi*: int32 |