소스 검색

Fixed returning incorrect type.

woollybah 7 년 전
부모
커밋
229265045f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      sdlvideo.mod/sdlvideo.bmx

+ 1 - 1
sdlvideo.mod/sdlvideo.bmx

@@ -403,7 +403,7 @@ Type TSDLWindow
 	not available by default. Those functions must be loaded at run-time, either with an OpenGL extension-handling
 	library or with #GLGetProcAddress() and its related functions.
 	End Rem
-	Method GLCreateContext:Byte Ptr()
+	Method GLCreateContext:TSDLGLContext()
 		Return TSDLGLContext._create(SDL_GL_CreateContext(windowPtr))
 	End Method