Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorJean-Luc Peurière <jlp@nerim.net>2008-03-14 22:44:32 +0300
committerJean-Luc Peurière <jlp@nerim.net>2008-03-14 22:44:32 +0300
commitdef3575575177774a494702fff4febc4b5b9da5b (patch)
treecf898e3f485ba9c86754b22e701f1728180b1197 /intern
parent8787ad14a256ab065c7c5fc24b56fd8c511847ba (diff)
forgot return value in C-api
spotted by JM Soler
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_C-api.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/ghost/intern/GHOST_C-api.cpp b/intern/ghost/intern/GHOST_C-api.cpp
index 8c93788ee1b..fe5ed2bf86a 100644
--- a/intern/ghost/intern/GHOST_C-api.cpp
+++ b/intern/ghost/intern/GHOST_C-api.cpp
@@ -268,7 +268,7 @@ int GHOST_OpenNDOF(GHOST_SystemHandle systemhandle, GHOST_WindowHandle windowhan
{
GHOST_ISystem* system = (GHOST_ISystem*) systemhandle;
- system->openNDOF((GHOST_IWindow*) windowhandle,
+ return system->openNDOF((GHOST_IWindow*) windowhandle,
setNdofLibraryInit, setNdofLibraryShutdown, setNdofDeviceOpen);
// original patch
// setNdofLibraryInit, setNdofLibraryShutdown, setNdofDeviceOpen, setNdofEventHandler);