From d1b6cc762c6660240eed8c726d9d545fdfcd78fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Wed, 25 Jun 2014 21:17:21 -0700 Subject: [PATCH] Display PPAPI version on startup. --- examples/common/entry/entry_nacl.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/common/entry/entry_nacl.cpp b/examples/common/entry/entry_nacl.cpp index 3bc7e15c..72536ac6 100644 --- a/examples/common/entry/entry_nacl.cpp +++ b/examples/common/entry/entry_nacl.cpp @@ -176,6 +176,8 @@ PP_EXPORT const void* PPP_GetInterface(const char* _name) PP_EXPORT int32_t PPP_InitializeModule(PP_Module _module, PPB_GetInterface _interface) { + DBG("PPAPI version: %d", PPAPI_RELEASE); + BX_UNUSED(_module); bool result = true; result &= initializeInterface(_interface, PPB_CORE_INTERFACE, g_coreInterface);