diff options
author | Andreas Rumpf <andreas@andreas-desktop> | 2010-01-17 22:19:10 +0100 |
---|---|---|
committer | Andreas Rumpf <andreas@andreas-desktop> | 2010-01-17 22:19:10 +0100 |
commit | 8259d9d15aa34dbbd84bb19150ab16a27378dd88 (patch) | |
tree | 585fa5a6e030824a4122ad7597fb81e47351c388 /lib/newwrap/sdl/smpeg.nim | |
parent | 5c33646e8312b7669b4829156bbf44875d22c7cd (diff) | |
download | Nim-8259d9d15aa34dbbd84bb19150ab16a27378dd88.tar.gz |
wrappers do not contain invalid identifiers
Diffstat (limited to 'lib/newwrap/sdl/smpeg.nim')
-rwxr-xr-x | lib/newwrap/sdl/smpeg.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/newwrap/sdl/smpeg.nim b/lib/newwrap/sdl/smpeg.nim index b8de2e70c..09ca5a018 100755 --- a/lib/newwrap/sdl/smpeg.nim +++ b/lib/newwrap/sdl/smpeg.nim @@ -257,7 +257,7 @@ proc setdisplay*(mpeg: PSMPEG, dst: PSurface, surfLock: Pmutex, callback: TDisplayCallback){.cdecl, importc: "SMPEG_setdisplay", dynlib: SmpegLibName.} # Set or clear looping play on an SMPEG object -proc loop*(mpeg: PSMPEG, repeat_: int){.cdecl, importc: "SMPEG_loop", +proc loop*(mpeg: PSMPEG, repeat: int){.cdecl, importc: "SMPEG_loop", dynlib: SmpegLibName.} # Scale pixel display on an SMPEG object proc scaleXY*(mpeg: PSMPEG, width, height: int){.cdecl, |