Home
last modified time | relevance | path

Searched refs:dwAppPausedCount (Results 1 – 2 of 2) sorted by relevance

/dports/games/arx-libertatis/arx-libertatis-1.1.2/src/core/
H A DApplication.cpp267 static u32 dwAppPausedCount = 0L; in Pause() local
269 dwAppPausedCount += (bPause ? +1 : -1); in Pause()
270 m_bReady = (dwAppPausedCount ? false : true); in Pause()
273 if (bPause && (1 == dwAppPausedCount)) in Pause()
/dports/games/d2x/d2x-0.2.5/arch/win32/
H A Dwinmain.cpp521 static DWORD dwAppPausedCount = 0L; in AppPause() local
523 if( bPause && 0 == dwAppPausedCount ) in AppPause()
527 dwAppPausedCount += ( bPause ? +1 : -1 ); in AppPause()
529 g_bReady = (0==dwAppPausedCount); in AppPause()