From ab6cad081f5355eaeaa8615979056b10088a8cea Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 2 Mar 2015 13:17:00 -0500 Subject: [PATCH] implemented glFlush and glFinish --- Source/Glitch64/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Glitch64/main.cpp b/Source/Glitch64/main.cpp index 27055002a..5ce238aa4 100644 --- a/Source/Glitch64/main.cpp +++ b/Source/Glitch64/main.cpp @@ -2572,13 +2572,13 @@ grErrorSetCallback( GrErrorCallbackFnc_t /*fnc*/ ) FX_ENTRY void FX_CALL grFinish(void) { - display_warning("grFinish"); + glFinish(); } FX_ENTRY void FX_CALL grFlush(void) { - display_warning("grFlush"); + glFlush(); } FX_ENTRY void FX_CALL