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

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKissaki <kissaki@gmx.de>2012-09-18 01:56:10 +0400
committerStefan Hacker <dd0t@users.sourceforge.net>2012-09-23 16:08:37 +0400
commite5101f22516e55d93e77aa86e26357707faa5891 (patch)
treee78cff5829664ba98fd6f895354fb84b821f8e5c /overlay/d3d10.cpp
parentea29bd24156aec0ee20ad35717b241a5d13d6f42 (diff)
Fix debug output for overlay chain notice
The debug outputs were placed after the return statements, rendering them useless. Place them in front, so they are executed.
Diffstat (limited to 'overlay/d3d10.cpp')
-rw-r--r--overlay/d3d10.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/overlay/d3d10.cpp b/overlay/d3d10.cpp
index 3ef57012c..229f2d6f1 100644
--- a/overlay/d3d10.cpp
+++ b/overlay/d3d10.cpp
@@ -541,8 +541,8 @@ static void HookResizeRaw(voidFunc vfResize) {
void checkDXGIHook(bool preonly) {
if (bChaining) {
- return;
ods("DXGI: Causing a chain");
+ return;
}
if (! dxgi->iOffsetPresent || ! dxgi->iOffsetResize)